PasswordResetServiceProvider::commands()

void commands(array|mixed $commands) Register the package's custom Artisan commands. Parameters array|mixed $commands Return Value void

Connection::withTablePrefix()

Grammar withTablePrefix(Grammar $grammar) Set the table prefix and return the grammar. Parameters Grammar $grammar Return Value Grammar

Pivot::load()

$this load(array|string $relations) Eager load relations on the model. Parameters array|string $relations Return Value $this

MorphToMany::getRelatedFreshUpdate()

string getRelatedFreshUpdate() Get the related model's updated at column name. Return Value string

RemindersTableCommand::choice()

bool 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 bool

SQLiteConnector::createConnection()

PDO createConnection(string $dsn, array $config, array $options) Create a new PDO connection. Parameters string $dsn array $config array $options Return Value PDO

Kernel

Kernel interface Kernel (View source) Methods void bootstrap() Bootstrap the application for HTTP requests. Response handle(Request $request) Handle an incoming HTTP request. void terminate(Request $request, Response $response) Perform any final actions for the request lifecycle. Application getApplication() Get the Laravel application instance.

FlushFailedCommand::info()

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

Guard::onceUsingId()

bool onceUsingId(mixed $id) Log the given user ID into the application without sessions or cookies. Parameters mixed $id Return Value bool

Builder::when()

$this when(bool $value, Closure $callback, Closure $default = null) Apply the callback's query changes if the given "value" is true. Parameters bool $value Closure $callback Closure $default Return Value $this