The SERVER_PORT environment variable will be picked up and used by Laravel. Either do:
export SERVER_PORT="8080"
php artisan serve
Or set SERVER_PORT=8080 in your .env file.
For port 8080:
php artisan serve --port=8080
And if you want to run it on port 80, you probably need to sudo:
sudo php artisan serve --port=80