DEV Community

Krixnaas
Krixnaas

Posted on

Share Local Laravel Project with IP address

Use Laravel's artisan for it which is Very simple

php artisan serve --host 192.168.1.101 --port 80
Enter fullscreen mode Exit fullscreen mode

Now from other computers, you can type: http://192.168.1.101:80

Note Do not forget to replace the IP with your own local one. That's it.

Top comments (0)