Lra Ravel
Lra Ravel
However, if you are not using Homestead, you will need to make sure your server
meets the following requirements:
Laravel utilizes Composer to manage its dependencies. So, before using Laravel, make
sure you have Composer installed on your machine.
Make sure to place Composer's system-wide vendor bin directory in your $PATH so the
laravel executable can be located by your system. This directory exists in different
locations based on your operating system; however, some common locations include:
macOS: $HOME/.composer/vendor/bin
Windows: %USERPROFILE%\AppData\Roaming\Composer\vendor\bin
GNU / Linux
Distributions: $HOME/.config/composer/vendor/bin or $HOME/.composer/vendor/bin
You could also find the composer's global installation path by running composer global
about and looking up from the first line.
Once installed, the laravel new command will create a fresh Laravel installation in the
directory you specify. For instance, laravel new blog will create a directory
named blog containing a fresh Laravel installation with all of Laravel's dependencies
already installed:
If you have PHP installed locally and you would like to use PHP's built-in development
server to serve your application, you may use the serve Artisan command. This
command will start a development server at http://localhost:8000:
Public Directory
After installing Laravel, you should configure your web server's document / web root to
be the public directory. The index.php in this directory serves as the front controller for
all HTTP requests entering your application.