composer installCreate 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=secretThen run the following command to create the tables:
php artisan migrate:install;
php artisan migrate:fresh;php artisan serve./vendor/bin/phpunitphp artisan dusk