MiddlewareMakeCommand::error()

void error(string $string) Write a string as error output. Parameters string $string Return Value void

MySqlBuilder::__construct()

void __construct(Connection $connection) Create a new database Schema manager. Parameters Connection $connection Return Value void

Builder::sum()

mixed sum(string $column) Retrieve the sum of the values of a given column. Parameters string $column Return Value mixed

PipelineServiceProvider::when()

array when() Get the events that trigger this service provider to register. Return Value array

Blueprint::integer()

Fluent integer(string $column, bool $autoIncrement = false, bool $unsigned = false) Create a new integer (4-byte) column on the table. Parameters string $column bool $autoIncrement bool $unsigned Return Value Fluent

FactoryBuilder

FactoryBuilder class FactoryBuilder (View source) Methods void __construct(string $class, string $name, array $definitions, array $states, Generator $faker) Create an new builder instance. $this times(int $amount) Set the amount of models you wish to create / make. $this states(array|dynamic $states) Set the states to be applied to the model. mixed create(array $attributes = array()) Create a collection of models and persist them to the database. mixed make(array $attr

RedirectResponse::withErrors()

$this withErrors(MessageProvider|array|string $provider, string $key = 'default') Flash a container of errors to the session. Parameters MessageProvider|array|string $provider string $key Return Value $this

PasswordBroker::validateNewPassword()

bool validateNewPassword(array $credentials) Determine if the passwords match for the request. Parameters array $credentials Return Value bool

Blueprint::unsignedSmallInteger()

Fluent unsignedSmallInteger(string $column, bool $autoIncrement = false) Create a new unsigned small integer (2-byte) column on the table. Parameters string $column bool $autoIncrement Return Value Fluent

JoinClause::each()

bool each(callable $callback, int $count = 1000) Execute a callback over each item while chunking. Parameters callable $callback int $count Return Value bool Exceptions RuntimeException