I am looking for a solution that will allow me to run artisan
commands from my local machine and for them to take effect on my homestead
VM.
For example, when running php artisan migrate
the command is run using the information stored in the .env
file points to the VM, but my terminal is trying to run them locally.
The majority of the commands run successfully because they do not need drivers from the remote machine. Running php artisan route:list
works fine.
How can I run artisan
commands using a local terminal?