Assuming you've already installed on your machine: PHP (>= 8.0.0), Laravel, Composer and Node.js.
# install dependencies
composer install
npm install
# create .env file and generate the application key
cp .env.example .env
php artisan key:generate
# Migrate database
php artisan migrate
# Seed database
php artisan db:seed
Then launch the server:
php artisan serve
The Laravel sample project is now up and running! Access it at http://localhost:8000.