/**
Make a laravel schedule in normal process and create cronjob like this format
Format:
**/
/usr/local/bin/php /home/hosting_user/public_html/artisan schedule:run >> /dev/null 2>&1
//example:
/usr/local/bin/php /home/harun/public_html/artisan schedule:run >> /dev/null 2>&1
// more details: http://bit.ly/laravel-scheduler
//In your Kernel.php Add the following
$schedule->command('queue:work', [
'--max-time' => 300
])->withoutOverlapping();
//Create a cron
* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1
$schedule->command('queue:restart')
->everyFiveMinutes();
$schedule->command('queue:work --daemon')
->everyMinute()
->withoutOverlapping();