Factory::setPageName()

void setPageName(string $pageName) Set the input page parameter name used by the paginator. Parameters string $pageName Return Value void

SessionGuard::setDispatcher()

void setDispatcher(Dispatcher $events) Set the event dispatcher instance. Parameters Dispatcher $events Return Value void

StorageLinkCommand::call()

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

Application::tag()

void tag(array|string $abstracts, array|mixed $tags) Assign a set of tags to a given binding. Parameters array|string $abstracts array|mixed $tags Return Value void

SqlServerConnection::selectFromWriteConnection()

array selectFromWriteConnection(string $query, array $bindings = array()) Run a select statement against the database. Parameters string $query array $bindings Return Value array

CSRF Protection

CSRF Protection Introduction Excluding URIs X-CSRF-Token X-XSRF-Token Introduction Laravel makes it easy to protect your application from cross-site request forgery (CSRF) attacks. Cross-site request forgeries are a type of malicious exploit whereby unauthorized commands are performed on behalf of an authenticated user. Laravel automatically generates a CSRF "token" for each active user session managed by the application. This token is used to verify that the authenticated user is the one act

Model::getDirty()

array getDirty() Get the attributes that have been changed since last sync. Return Value array

RequestMakeCommand::info()

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

Command::confirm()

bool confirm(string $question, bool $default = false) Confirm a question with the user. Parameters string $question bool $default Return Value bool

Application::getNamespace()

string getNamespace() Get the application namespace. Return Value string Exceptions RuntimeException