List scheduled commands in CLI in Laravel 8.x

1 · Amit Merchant · Dec. 16, 2020, 12:24 p.m.
Sometimes, it would be convenient if you get details regarding things right in your terminal. Take for instance, all your scheduled commands that you have defined in your application’s App\Console\Kernel class’ schedule method like so. /** * Define the application's command schedule. * * @param \Illuminate\Console\Scheduling\Schedule $schedule * @return void */ protected function schedule(Schedule $schedule) { $schedule->command('emails:send Amit --force')->daily(); $schedule->exe...