Laravel 10 Authentication - Install Laravel 10 Breeze
Laravel 10 Breeze install step by step
In this post, you will be learning about laravel authentication using breeze package which is all about laravel auth scaffolding.
First, you need to create a fresh laravel application and then you can install this breeze auth scaffolding package.
Click to read how to create a laravel application: https://www.fundaofwebit.com/post/how-to-install-laravel-10-using-composer-on-windows
So guys, Lets get started with Laravel Auth Breeze Installation.
STEP 1: install Laravel Breeze using Composer.
STEP 2: Run the below Artisan command to install breeze
The breeze:install command will prompt you for your preferred frontend stack and testing framework:
STEP 3: Create a Database and connect the database with laravel application via .env file as follows ( Open .env file )
STEP 4: Lets migrate the tables into our database with the Artisan command:
STEP 5: Now, Install the Node Modules packages with the following command:
STEP 6: Run the NPM with the following command:
STEP 7: Lets serve the laravel application
Note: STEP 6 and STEP 7 should be always running to serve the laravel application
STEP 8: you can open your application on browser at url
Now you can register, login, update profile, reset-password, etc
I hope it helps you. Thanks for reading.