call(function () { $yesterday = Carbon::yesterday()->toDateString(); $order_ids = OrderDevice::where('end_date', $yesterday)->pluck('order_id')->unique(); foreach($order_ids as $order_id) { Notification::send($order_id, true); } })->dailyAt('01:00'); // $schedule->command('inspire') // ->hourly(); } /** * Register the Closure based commands for the application. * * @return void */ protected function commands() { require base_path('routes/console.php'); } }