Laravel 10 Authentication - Install Laravel 10 Breeze

By Ved Prakash N | Nov 12, 2023 | Laravel
Share :

https://www.fundaofwebit.com/post/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.

composer require laravel/breeze --dev


STEP 2: Run the below Artisan command to install breeze

php artisan breeze:install

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 )

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laraveltutorial
DB_USERNAME=root
DB_PASSWORD= 


STEP 4: Lets migrate the tables into our database with the Artisan command:

php artisan migrate


STEP 5: Now, Install the Node Modules packages with the following command:

npm install


STEP 6: Run the NPM with the following command:

npm run dev


STEP 7: Lets serve the laravel application 

php artisan serve

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

http://localhost:8000

Now you can register, login, update profile, reset-password, etc


I hope it helps you. Thanks for reading. 

https://www.fundaofwebit.com/post/laravel-10-authentication-install-laravel-10-breeze

Share this blog on social platforms