Laravel 10 , Breeze is a lightweight and minimalistic starter kit for Laravel, a popular PHP framework. It provides a foundation for quickly setting up and scaffolding a new Laravel application with authentication features.
Step 1: Install Laravel App
composer create-project laravel/laravel laravel-Breeze
Step2: Install Breeze Package
composer require laravel/breeze --dev
Now, you have to install laravel breeze for simple auth scaffolding. so let's run bellow command:
php artisan breeze:install
Now let's install npm:
npm install && npm run dev
Next run migration command:
php artisan migrate
Run Laravel App:
php artisan serve
Now, Go to web browser, type the given URL and see the output:
http://localhost:8000
Now you can see output with login and register button in home page. Thank You