I made an app which has React Front-End and Laravel Back-end. It works fine on my desktop but i tried running it on other devices in my house and they wont connect with the server:
I tried the following:
php -S ip:8888 -t public
php artisan serve --host 0.0.0.0 --port 8888
On my desktop ( the place where the server is hosted on ) i can connect to the server just by writing ip:8888/ in the browser search. However, any other device won't pick this up. I Tried port forwarding the port 8888 from my desktop but that didnt work either.
Any clue on why this might be?