Answers for "php artisan serve port"

PHP
3

php artisan serve another port

# specify port 
$ php artisan serve --port=8080

# specify host and port
$ php artisan serve --host=localhost --port=8080
Posted by: Guest on November-29-2020
2

php artisan serve specify ip

php artisan serve --host=some.other.domain --port=8001
Posted by: Guest on October-21-2020
0

how to serve the port in php

php artisan serve --port=portNumber

// Example with port
php artisan serve --port=8001
  
// Note: You May choose anyport you want
Posted by: Guest on January-27-2021

Code answers related to "php artisan serve port"

Browse Popular Code Answers by Language