DatabaseNotificationCollection::only()

Collection only(mixed $keys) Returns only the models from the collection with the specified keys. Parameters mixed $keys Return Value Collection

Model::newInstance()

Model newInstance(array $attributes = array(), bool $exists = false) Create a new instance of the given model. Parameters array $attributes bool $exists Return Value Model

JobMakeCommand::argument()

string|array argument(string $key = null) Get the value of a command argument. Parameters string $key Return Value string|array

View::setPath()

void setPath(string $path) Set the path to the view. Parameters string $path Return Value void

DatabaseNotification::updated()

static void updated(Closure|string $callback, int $priority) Register an updated model event with the dispatcher. Parameters Closure|string $callback int $priority Return Value void

SQLiteGrammar::compileTableExists()

string compileTableExists() Compile the query to determine if a table exists. Return Value string

FormRequest::duplicate()

duplicate(array $query = null, array $request = null, array $attributes = null, array $cookies = null, array $files = null, array $server = null) {@inheritdoc} Parameters array $query array $request array $attributes array $cookies array $files array $server

Monitor

Monitor interface Monitor (View source) Methods void looping(mixed $callback) Register a callback to be executed on every iteration through the queue loop. void failing(mixed $callback) Register a callback to be executed when a job fails after the maximum amount of retries. void stopping(mixed $callback) Register a callback to be executed when a daemon queue is stopping.

Builder::getProcessor()

Processor getProcessor() Get the database query processor instance. Return Value Processor

DatabaseNotification::forceDelete()

bool|null forceDelete() Force a hard delete on a soft deleted model. This method protects developers from running forceDelete when trait is missing. Return Value bool|null