Good morning, everyone.
I have a Laravel
application on the computer I use and would like to be able to access on another computer from the name created in Virtual Host and configured in the Hosts file of the machine I use.
Example: On computer 01 the application was created and is running by passing the name created in VirtualHost
On computer 02, on the same network, typing the address should call the application that is running computer 01.
VirtualHost file details
<VirtualHost laravel.dev:80>
DocumentRoot "C:\xampp\htdocs\laravel\public"
ServerAdmin laravel.dev
<Directory "C:\xampp\htdocs\laravel">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
Hosts File Configuration
127.0.0.1 laravel.dev