Laravel Tip #1: Check if scheduled jobs are running successfully
Approx Time: 1 Minutes
Rishabh Pandey • April 18, 2021
Like always you can also log these into files.
$schedule->command('emails:send')
->daily()
->sendOutputTo($filePath);
$schedule->command('emails:send')
->daily()
->appendOutputTo($filePath);