0
How do I shell a linux script to run an Artisan command from Laravel?
ex: php artisan migrate
but create a script to run this command
0
How do I shell a linux script to run an Artisan command from Laravel?
ex: php artisan migrate
but create a script to run this command
1
It would be something like this that you need ?
#!/bin/bash
/usr/bin/php /pasta/root/projeto/artisan cache:clear
Browser other questions tagged laravel linux bash artisan
You are not signed in. Login or sign up in order to post.