# Task Scheduling

$schedule->command('emails:send')
    ->daily()
    ->onSuccess(function() {
        // The task succeeded
    })
    ->onFailure(function() {
        // The task failed
    });
Last Updated: 6/26/2025, 08:49:49