0
我不能每天或每小時運行時刻表,窗戶,...Laravel時間表不工作
這個代碼不起作用
$schedule->call(function() {
\DB::table('test')->delete(); // or anything else
})->everyFiveMinutes(); // tested : ->hourly() | ->daily()
php artisan schedule:run
=>沒有預定的命令準備好運行。
-
但它的工作:$schedule->command('queue:work')
我使用的是Windows,我認爲它可以在Windows –