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