DEV Community

Manish Shambhoo Sah
Manish Shambhoo Sah

Posted on

Multi Auth System in Laravel Breeze #1

#1 multi auth system in laravel breeze - laravel 10

before start the implement of authentication in laravel you should basic concept of laravel should know and how authentication work

be provide you a step by step implementaion of multi auth system in laravel you should follow

  • In the first step to create a laravel project using

laravel new MultiAuth

  • In the second step to download laravel/breeze inside a MultiAuth folder

composer require laravel/breeze

  • In the third step to install breeze in MultiAuth

php artisan breeze:install

then run the command for start the MultiAuth

  1. in first terminal to run

php artisan serve

  1. in second terminal to run

npm run dev

in above three step they create a basic authentication system for default user

next part for how to create admins part

Top comments (0)