Builder::pluck()

Collection pluck(string $column, string|null $key = null) Get an array with the values of a given column. Parameters string $column string|null $key Return Value Collection

SQLiteGrammar::wrapTable()

string wrapTable(Expression|string $table) Wrap a table in keyword identifiers. Parameters Expression|string $table Return Value string

GuardHelpers

GuardHelpers trait GuardHelpers (View source) These methods are typically the same across all guards. Methods Authenticatable authenticate() Determine if the current user is authenticated. bool check() Determine if the current user is authenticated. bool guest() Determine if the current user is a guest. int|null id() Get the ID for the currently authenticated user. $this setUser(Authenticatable $user) Set the current user.

Broadcaster::broadcast()

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

Request::__callStatic()

static mixed __callStatic(string $method, array $args) Handle dynamic, static calls to the object. Parameters string $method array $args Return Value mixed

Builder::simplePaginate()

Paginator simplePaginate(int $perPage = null, array $columns = array('*'), string $pageName = 'page', int|null $page = null) Paginate the given query into a simple paginator. Parameters int $perPage array $columns string $pageName int|null $page Return Value Paginator

MailMessage::toArray()

array toArray() Get an array representation of the message. Return Value array

Request::setFacadeApplication()

static void setFacadeApplication(Application $app) Set the application instance. Parameters Application $app Return Value void

JoinClause::whereYear()

Builder|Builder whereYear(string $column, string $operator, mixed $value = null, string $boolean = 'and') Add a "where year" statement to the query. Parameters string $column string $operator mixed $value string $boolean Return Value Builder|Builder

HasherInterface::check()

bool check(string $value, string $hashedValue, array $options = array()) Check the given plain value against a hash. Parameters string $value string $hashedValue array $options Return Value bool