Complete the code to start the Laravel development server.
php artisan [1]Use php artisan serve to start the Laravel development server.
Complete the command to specify a custom port for the Laravel development server.
php artisan serve --port=[1]Use --port=8080 to run the server on port 8080.
Fix the error in the command to start the Laravel server on a specific host.
php artisan serve --host=[1]The correct host is localhost or a valid IP address like 127.0.0.1.
Fill both blanks to run the Laravel development server on host 0.0.0.0 and port 9000.
php artisan serve --host=[1] --port=[2]
Use --host=0.0.0.0 to listen on all interfaces and --port=9000 to specify the port.
Fill all three blanks to run the Laravel server on host 127.0.0.1, port 8081, and specify the environment as local.
php artisan serve --host=[1] --port=[2] --env=[3]
Use --host=127.0.0.1 for localhost, --port=8081 for the port, and --env=local to set the environment.