composer install
Create the database locally and change the following environment variables in the .env
file to match your database credentials:
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=secret
Then run the following command to create the tables:
php artisan migrate:install;
php artisan migrate:fresh;
php artisan serve
./vendor/bin/phpunit
php artisan dusk