- Install PHP and Composer
- Execute this to create .env file
php -r "file_exists('.env') || copy('.env.example', '.env');"
- Create your database and update .env file information's
- Install project dependencies with the following command
composer install
- Migrate data with the following command
php artisan migrate --seed
- Or you can just migrate first with
php artisan migrate
and populate data withphp artisan db:seed
- Generate project key with the command
php artisan key:generate
To execute the project, you will just have to enter the next command: php artisan serve
And open the link http://localhost:8000
Alvine Simo