schedule command in laravel code example
Example 1: laravel scheduler run
php artisan schedule:list
php artisan schedule:run
Example 2: cron job for backup in laravel 5.4
* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1