command('send:daily') ->cron('0 */6 * * *'); $schedule->call(function() { $users = User::where('email_verified_at', '=', null) ->get(); foreach ($users as $user) { dispatch((new SendReminderEmail($user))); } })->daily(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }