Schedule::dueEvents()

array dueEvents(Application $app) Get all of the events on the schedule that are due. Parameters Application $app Return Value array

Schedule::command()

Event command(string $command, array $parameters = array()) Add a new Artisan command event to the schedule. Parameters string $command array $parameters Return Value Event

Schedule::call()

Event call(string $callback, array $parameters = array()) Add a new callback event to the schedule. Parameters string $callback array $parameters Return Value Event

Schedule

Schedule class Schedule (View source) Methods Event call(string $callback, array $parameters = array()) Add a new callback event to the schedule. Event command(string $command, array $parameters = array()) Add a new Artisan command event to the schedule. Event exec(string $command, array $parameters = array()) Add a new command event to the schedule. array events() Get all of the events on the schedule. array dueEvents(Application $app) Get all of the events on the sch

Rule::__callStatic()

static mixed __callStatic(string $method, array $parameters) Dynamically handle calls to the class. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException

Rule::__call()

mixed __call(string $method, array $parameters) Dynamically handle calls to the class. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException

Rule::unique()

static Unique unique(string $table, string $column = 'NULL') Get a unique constraint builder instance. Parameters string $table string $column Return Value Unique

Rule::notIn()

static NotIn notIn(array $values) Get a not_in constraint builder instance. Parameters array $values Return Value NotIn

Rule::macro()

static void macro(string $name, callable $macro) Register a custom macro. Parameters string $name callable $macro Return Value void

Rule::in()

static In in(array $values) Get an in constraint builder instance. Parameters array $values Return Value In