I am developing two applications, one that will be my front and another the backend, it happens that when I upload the applications to development laravel only enables one application, but it responds on both hosts.
To get clearer, I'll explain below the two commands:
php artisan serve --host=fo1.dev --port=80
Laravel development server started on link
php artisan serve --host=fo2.dev --port=80
Laravel development server started on link
I run the commands at the command prompt in different instances, but the application that goes up is always the one I run on the first command, as if the second command was ignored, even though the message says it is running. Accessing either of the two hosts is only shown to me the system of the first command.
The question is, is there any command in Laravel that I can enter in the path of the application when uploading the Laravel server? Something like: php serve --path=c:\sistemas\fo1 --host=fo1.dev --port=80