diff --git a/quick.md b/quick.md index 45c63f0f970..f8b44365d39 100644 --- a/quick.md +++ b/quick.md @@ -43,6 +43,10 @@ After installing Laravel, you may need to grant the web server write permissions Typically, you may use a web server such as Apache or Nginx to serve your Laravel applications. If you are on PHP 5.4+ and would like to use PHP's built-in development server, you may use the `serve` Artisan command: php artisan serve + +By default the HTTP-server will listen to port 8000. However if that port is already in use or you wish to serve multiple applications this way, you might want to specify what port to use. Just add the --port argument: + + php artisan serve --port=8080 ### Directory Structure