# Task Scheduling

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