Trying to Scheduling Artisan Commands
https://laravel.com/docs/5.0/artisan
* * * * * php /path/to/artisan schedule:run 1>> /dev/null 2>&1
Can someone please show me how do I know the /path/to/artisan
?
artisan
is in your Laravel project root. So, if your project path looks like /home/laravel-proj/
use this:
* * * * * php /home/laravel-proj/artisan schedule:run 1>> /dev/null 2>&1