Whats the point of running Laravel with the command ‘php artisan serve’?

The serve command is just a shortcut for the PHP Built-in Webserver, something PHP has out of the box, so the point of using it is to start testing your application as fast as you could, you just need to install PHP, Composer and your application is up (if you don’t need anything else, of course). But if you already have Nginx installed, there is no point at all, just use it.

It’s not wise to use the Builtin Webserver in production.

Leave a Comment