Clone This Repo Then Install all dependencies
npm install && composer install
or with bun
bun install && composer install
Renaming .env.example to .env
mv .env.example .env
Set your database
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=
Then Generate Key
php artisan key:generate --ansi
Running all migrations and seeders
php artisan migrate:fresh --seed