/**
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
$schedule->command('queue:restart')
->everyFiveMinutes();
$schedule->command('queue:work --daemon')
->everyMinute()
->withoutOverlapping();