Builder::eagerLoadRelations()

array eagerLoadRelations(array $models) Eager load the relationships for the models. Parameters array $models Return Value array

SQLiteGrammar::compileDropColumn()

array compileDropColumn(Blueprint $blueprint, Fluent $command, Connection $connection) Compile a drop column command. Parameters Blueprint $blueprint Fluent $command Connection $connection Return Value array

RedisBroadcaster::broadcast()

void broadcast(array $channels, string $event, array $payload = array()) Broadcast the given event. Parameters array $channels string $event array $payload Return Value void

TableCommand::argument()

string|array argument(string $key = null) Get the value of a command argument. Parameters string $key Return Value string|array

RestartCommand::callSilent()

int callSilent(string $command, array $arguments = array()) Call another console command silently. Parameters string $command array $arguments Return Value int

GeneratorCommand::info()

void info(string $string, null|int|string $verbosity = null) Write a string as information output. Parameters string $string null|int|string $verbosity Return Value void

App::swap()

static void swap(mixed $instance) Hotswap the underlying instance behind the facade. Parameters mixed $instance Return Value void

DatabaseReminderRepository::create()

string create(RemindableInterface $user) Create a new reminder record and token. Parameters RemindableInterface $user Return Value string

CompilerEngine

CompilerEngine class CompilerEngine extends PhpEngine (View source) Methods string get(string $path, array $data = array()) Get the evaluated contents of the view. void __construct(CompilerInterface $compiler) Create a new Blade view engine instance. CompilerInterface getCompiler() Get the compiler implementation.

Unique

Unique class Unique (View source) Methods void __construct(string $table, string $column = 'NULL') Create a new unique rule instance. $this where(string $column, string $value = null) Set a "where" constraint on the query. $this whereNot(string $column, string $value) Set a "where not" constraint on the query. $this whereNull(string $column) Set a "where null" constraint on the query. $this whereNotNull(string $column) Set a "where not null" constraint on the query.