1The full command works like this:
2
3php artisan serve --host=<host IP address> --port=<port to use>
4
5php artisan serve --host=127.0.0.1 --port=8080
1php artisan serve
2 /*
3To START composer in project folder on MacOS:
4 The original answer is:
5
6 The full command works like this:
7
8php artisan serve --host=<host IP address> --port=<port to use>
9
10php artisan serve --host=127.0.0.1 --port=8080
11AFTER: php artisan serve TERMINAL SHOWS:
12Laravel development server started: <http://127.0.0.1:8000>
13
14IN WEB BROWSER ENTER THE:
15http://127.0.0.1:8000 , OR:
16http://localhost:8000/
17AND YOU ARE IN ! ! !
18 */
19http://127.0.0.1:8000/
20http://localhost:8000/
1php artisan serve
2 // The original answer is:
3 /*
4 The full command works like this:
5
6php artisan serve --host=<host IP address> --port=<port to use>
7
8php artisan serve --host=127.0.0.1 --port=8080
9 */