command('clean_logs')->daily(); // Chạy command 'daily:api-call' vào mỗi ngày lúc 9h sáng // $schedule->command('daily:api-call') // ->dailyAt('18:00'); // Chạy command vào ngày 31/12 lúc 23:59:59 mỗi năm // $schedule->command('initialize:leavedays')->yearlyOn(12, 31, '23:59:59'); $schedule->command('leave:deduct')->yearlyOn(3, 31, '23:59:59'); // Chạy buổi sáng lúc 12:00 $schedule->command('attendance:check S')->dailyAt('12:00'); // Chạy buổi chiều lúc 17:30 $schedule->command('attendance:check C')->dailyAt('17:30'); // Chạy vào 00:01 ngày đầu tiên của mỗi tháng $schedule->command('add:monthly-leavedays')->monthlyOn(1, '00:01'); } /** * Register the commands for the application. */ protected function commands(): void { $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } }