I'm developing a project with Laravel that will be run (and used) on a local machine. Is it advisable to simply run it with "php artisan serve" or should I install a server for it? Does this command have any impact on the app's performance?
And if I can rely on that command for launching the application, can I change the port on which it runs or will it always be 8000? Can I customize it so that the app will only be accessible from localhost
?
Edit: The intended version for the project is 5.3