Answers for "laravel schedule run"

PHP
0

laravel schedule run

// Settng Cron in AWS
// type command "crontab -e" and paste the below formatted line
* * * * * /pathToYourPhp /pathToArtisan/artisan schedule:run >> /dev/null 2>&1
// for example * * * * * /usr/bin/php7.4 /var/www/html/testproject/artisan schedule:run >> /dev/null 2>&1
Posted by: Guest on May-21-2021

Browse Popular Code Answers by Language