composer install
npm install
php artisan serve
npm run dev
docker compose up
php artisan migrate:fresh --seed
composer install
npm install
npm run build
Make sure to fill then .env properly and that the Database is available.
php artisan db:show
php artisan migrate:fresh
Create User using Tinker
php artisan tinker
$user = User::create(['name' => 'Example User', 'email' => 'mail@example.com', 'password' => 'example']);
$user->markEmailAsVerified();