Laravel Tip #1: Check if scheduled jobs are running successfully cover image

Laravel Tip #1: Check if scheduled jobs are running successfully

Approx Time: 1 Minutes

Rishabh Pandey • April 18, 2021

laravel

Like always you can also log these into files.

$schedule->command('emails:send')
         ->daily()
         ->sendOutputTo($filePath);


$schedule->command('emails:send')
         ->daily()
         ->appendOutputTo($filePath);

Share on Twitter