Cron in Laravel

Requires the scheduler itself to be started every minute: `* * * * * php artisan schedule:run`. Below, every schedule with a Laravel example you can paste.

// routes/console.php
Schedule::command('reports:send')
    ->cron('*/5 * * * *')
    ->timezone('UTC')
    ->withoutOverlapping();