MiddlewareMakeCommand::argument()

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

SQLiteGrammar::compileRenameColumn()

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

CheckResponseForModifications

CheckResponseForModifications class CheckResponseForModifications (View source) Methods mixed handle(Request $request, Closure $next) Handle an incoming request.

Blueprint

Blueprint class Blueprint (View source) Properties string $engine The storage engine that should be used for the table. $charset The default character set that should be used for the table. $collation The collation that should be used for the table. bool $temporary Whether to make the table temporary.

SQLiteGrammar::compileDrop()

string compileDrop(Blueprint $blueprint, Fluent $command) Compile a drop table command. Parameters Blueprint $blueprint Fluent $command Return Value string

PostgresGrammar::compileDropIfExists()

string compileDropIfExists(Blueprint $blueprint, Fluent $command) Compile a drop table (if exists) command. Parameters Blueprint $blueprint Fluent $command Return Value string

StartSession::getSession()

SessionInterface getSession(Request $request) Get the session implementation from the manager. Parameters Request $request Return Value SessionInterface

BelongsToMany::chunk()

bool chunk(int $count, callable $callback) Chunk the results of the query. Parameters int $count callable $callback Return Value bool

MigrationCreator::afterCreate()

void afterCreate(Closure $callback) Register a post migration create hook. Parameters Closure $callback Return Value void

Builder::join()

$this join(string $table, string $one, string $operator = null, string $two = null, string $type = 'inner', bool $where = false) Add a join clause to the query. Parameters string $table string $one string $operator string $two string $type bool $where Return Value $this