1、 -- 创建一个任务命令:
php artisan make:command DeliCommand
2、引用任务
3、手动执行任务调度:测试
4、设置定时任务
$schedule->command('wechat:send')->dailyAt('09:00');
//$schedule->command('Deli:query')->twiceDaily(1,13);
->cron('* * * * *'); 在自定义Cron调度上运行任务
->everyMinute(); 每分钟运行一次任务
->everyFiveMinutes(); 每五分钟运行一次任务
->everyTenMinutes(); 每十分钟运行一次任务
->everyThirtyMinutes(); 每三十分钟运行一次任务
->hourly(); 每小时运行一次任务
->daily(); 每天凌