How to run laravel 5 on port 80 of localhost?
To run the service on another port you need to pass the port parameter
with port number
using this code on the cmd:
php artisan serve --port=80
To run on port 80
, you might need administrator permission.
You may have to use sudo command for admin rights.
sudo php artisan serve --port=80