php artisan schedule:run
Running scheduled command: Closure
protected function schedule(Schedule $schedule)
{
$schedule->call(function () {
DB::table('zagon_all')->insert(
[]
);
})->everyMinute();
}