Laravel php工匠服务

I have an odd question. I'm currently away at college and have been using some of my free time to work on some projects I have. My question is, if I run php artisan serve run on the college wifi network would people be able to go to localhost:8000 on their computers and view the website? This sounds so dumb asking but I just wanna be 100% sure!

Thanks! polarsix

In laravel,Port listening on localhost:8000 but it is not available other PC if you want to share your site you need to send your ip address with your friends and your website should be running on your pc then your friends can see yuor website/application using IP:8000.

localhost working only on current pc but if you want share your college friend then use like that

find your current lan ip address

php artisan serve --host --port

php artisan serve --host=192.168.2.10

php artisan serve --host=192.168.2.10 --port=8000