BroadcastController::callAction()

Response callAction(string $method, array $parameters) Execute an action on the controller. Parameters string $method array $parameters Return Value Response

ConfigCacheCommand::line()

void line(string $string, string $style = null, null|int|string $verbosity = null) Write a string as standard output. Parameters string $string string $style null|int|string $verbosity Return Value void

BelongsToMany::wherePivotIn()

BelongsToMany wherePivotIn(string $column, mixed $values, string $boolean = 'and', bool $not = false) Set a "where in" clause for a pivot table column. Parameters string $column mixed $values string $boolean bool $not Return Value BelongsToMany

DatabaseConnector::__construct()

void __construct(ConnectionResolverInterface $connections) Create a new connector instance. Parameters ConnectionResolverInterface $connections Return Value void

Service Providers

Service Providers Introduction Writing Service Providers The Register Method The Boot Method Registering Providers Deferred Providers Introduction Service providers are the central place of all Laravel application bootstrapping. Your own application, as well as all of Laravel's core services are bootstrapped via service providers. But, what do we mean by "bootstrapped"? In general, we mean registering things, including registering service container bindings, event listeners, middleware, and

Model::resolveConnection()

static Connection resolveConnection(string|null $connection = null) Resolve a connection instance. Parameters string|null $connection Return Value Connection

Builder::whereMonth()

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

NullStore::decrement()

int|bool decrement(string $key, mixed $value = 1) Decrement the value of an item in the cache. Parameters string $key mixed $value Return Value int|bool

RouteListCommand::ask()

string ask(string $question, string $default = null) Prompt the user for input. Parameters string $question string $default Return Value string

SQLiteConnection::getSchemaGrammar()

Grammar getSchemaGrammar() Get the schema grammar used by the connection. Return Value Grammar