have you set up a cron entry in /etc/crontab?
* * * * * root cd /var/www/project; php artisan schedule:run > /dev/null
I have set up a cron job that calls a method on the controller every five minutes. However, it is not running. So I thought maybe there is a way of kicking off cron jobs after setting up application on the server. Any help?
$schedule->call('App\Http\Controllers\ProController@process')->everyFiveMinutes();
have you set up a cron entry in /etc/crontab?
* * * * * root cd /var/www/project; php artisan schedule:run > /dev/null
Please or to participate in this conversation.