NotificationSending::__construct()

void __construct(mixed $notifiable, Notification $notification, string $channel) Create a new event instance. Parameters mixed $notifiable Notification $notification string $channel Return Value void

RedirectResponse::setSession()

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

DatabaseUserProvider::retrieveById()

Authenticatable|null retrieveById(mixed $identifier) Retrieve a user by their unique identifier. Parameters mixed $identifier Return Value Authenticatable|null

Message

Message class Message (View source) Methods void __construct(Swift_Message $swift) Create a new message instance. $this from(string|array $address, string|null $name = null) Add a "from" address to the message. $this sender(string|array $address, string|null $name = null) Set the "sender" of the message. $this returnPath(string $address) Set the "return path" of the message. $this to(string|array $address, string|null $name = null, bool $override = false) Add a recipie

Kernel

Kernel class Kernel implements Kernel (View source) Methods void __construct(Application $app, Router $router) Create a new HTTP kernel instance. Response handle(Request $request) Handle an incoming HTTP request. void terminate(Request $request, Response $response) Call the terminate method on any terminable middleware. $this prependMiddleware(string $middleware) Add a new middleware to beginning of the stack if it does not already exist. $this pushMiddleware(string $m

QueueServiceProvider::pathsToPublish()

static array pathsToPublish(string $provider = null, string $group = null) Get the paths to publish. Parameters string $provider string $group Return Value array

CacheTableCommand::choice()

string choice(string $question, array $choices, string $default = null, mixed $attempts = null, bool $multiple = null) Give the user a single choice from an array of answers. Parameters string $question array $choices string $default mixed $attempts bool $multiple Return Value string

Fluent::__get()

mixed __get(string $key) Dynamically retrieve the value of an attribute. Parameters string $key Return Value mixed

Builder::paginate()

LengthAwarePaginator paginate(int $perPage = 15, 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 LengthAwarePaginator

Model::setRelation()

$this setRelation(string $relation, mixed $value) Set the specific relationship in the model. Parameters string $relation mixed $value Return Value $this