Answers for "laravel to make localhost live"

PHP
0

run laravel localhost network

sudo php artisan serve --host 192.168.1.101 --port 80
Posted by: Guest on October-10-2021
1

how to start composer in laravel project on localhost

php artisan serve
  // The original answer is:
  /* 
  The full command works like this:

php artisan serve --host=<host IP address> --port=<port to use>

php artisan serve --host=127.0.0.1 --port=8080
  */
Posted by: Guest on August-15-2020

Browse Popular Code Answers by Language