Here's some info on that: https://www.devside.net/wamp-server/accessing-websites-on-a-local-network-lan-web-server
Access my Laravel site on another computer on the same network
Hello, I need to access my Laravel site on a conference room PC which is on the same network as my development mac.
I am using MAMP Pro, and all my other localhost websites are accessible on other computers using my IP Address
To access my development sites on another computer in my building, I just use my ip address.. Example: http://10.0.0.123/SomeHtmlSite - is accessible on other PCs
Since my laravel app is running on localhost:8000 I figured that http://10.0.0.123:8000 would point to my Laravel app. This doesn't work, I'm sure I have to change this value or make changes to permissions, but not sure where.
How can I make this work?
I found out the issue myself I used the following command to start the server:
sudo php artisan serve --host 10.0.0.123 --port 80
Please or to participate in this conversation.