Answers for "from code artisan command migrate"

PHP
0

artisan call migrate result

Artisan::call('migrate');
   return Artisan::output();
Posted by: Guest on September-03-2020
0

How to execute “php artisan migrate” and other Laravel commands in remote server?

ssh [email protected] << EOF
cd /var/www/app/;
php artisan migrate --force; // force prevents artisan from asking for a yes/no on production
exit;
EOF
Posted by: Guest on September-03-2020

Code answers related to "from code artisan command migrate"

Browse Popular Code Answers by Language