DatabaseMigrationRepository::getNextBatchNumber()

int getNextBatchNumber() Get the next migration batch number. Return Value int

ViewErrorBag::put()

$this put(string $key, MessageBag $bag) Add a new MessageBag instance to the bags. Parameters string $key MessageBag $bag Return Value $this

SortedMiddleware::search()

mixed search(mixed $value, bool $strict = false) Search the collection for a given value and return the corresponding key if successful. Parameters mixed $value bool $strict Return Value mixed

MorphOne::firstOrNew()

Model firstOrNew(array $attributes) Get the first related model record matching the attributes or instantiate it. Parameters array $attributes Return Value Model

SortedMiddleware::__callStatic()

static mixed __callStatic(string $method, array $parameters) Dynamically handle calls to the class. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException

UserProviderInterface::updateRememberToken()

void updateRememberToken(UserInterface $user, string $token) Update the "remember me" token for the given user in storage. Parameters UserInterface $user string $token Return Value void

ConnectionFactory::createConnector()

ConnectorInterface createConnector(array $config) Create a connector instance based on the configuration. Parameters array $config Return Value ConnectorInterface Exceptions InvalidArgumentException

RedirectResponse::setSession()

void setSession(Store $session) Set the session store implementation. Parameters Store $session Return Value void

RemindersTableCommand::option()

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

Controllers

Controllers Introduction Basic Controllers Defining Controllers Controllers & Namespaces Single Action Controllers Controller Middleware Resource Controllers Partial Resource Routes Naming Resource Routes Naming Resource Route Parameters Supplementing Resource Controllers Dependency Injection & Controllers Route Caching Introduction Instead of defining all of your request handling logic as Closures in route files, you may wish to organize this behavior using Controller classes. Co