DEV Community

Cover image for Laravel 8 Authentication
shani singh
shani singh

Posted on

Laravel 8 Authentication

As Laravel 8 has removed default auth Scaffolding, I will explain about adding auth scaffolding in Laravel 8.

we can add the laravel/ui package has bootstrap and Vue UI Component and auth scaffolding.

To know more about this package you can visit
Github Laravel UI.

Steps To Add in Laravel 8

Step 1

Include the laravel/ui package into project,

composer require laravel/ui 
Enter fullscreen mode Exit fullscreen mode

Once the laravel/ui package has been installed, you may install the frontend scaffolding using the ui Artisan command:

// Generate basic scaffolding... php artisan ui bootstrap php artisan ui vue php artisan ui react // Generate login / registration scaffolding... php artisan ui bootstrap --auth php artisan ui vue --auth php artisan ui react --auth 
Enter fullscreen mode Exit fullscreen mode

Step 2

After including UI Components now we have to add CSS and JS Files, For that, we need to run the following commands.

npm install npm run dev 
Enter fullscreen mode Exit fullscreen mode

You can watch this video I have explained this.


Thank You for Reading

Reach Out To me.
Twitter
Instagram
TechToolIndia

Top comments (1)

Collapse
 
eduardo_dx profile image
Eduardo D.

Good tutorial