After the laravel 6+ versions. The php artisan make:auth
command was removed and we got a nice Composer package which is called laravel/ui
I have been working with Laravel frameworks for several years, Of course, this was a big trouble for me. because you know, that make:auth
command is very easy to kick start with authentication. In other words, It's like a boilerplate of authentication in Laravel apps.
However, we will never see again that artisan command. So I developed a package which is called laravel-simple-auth to re-enable make:auth
command in Laravel 6+ versions.
This package may not improve the speed of your workflow. This is just a package for people who love
make:auth
command.
Installation
Let's see how we can install this package.
- Run the following command on your laravel project root path:
composer require dasundev/laravel-simple-auth
- Now it's time to enjoy the missing make:auth command. 😜
php artisan make:auth
- The laravel-simple-auth developed by using the
laravel/ui
, Therefore, you can pass the frontend scaffolding as you wish like this:php artisan make:auth bootstrap
Check out the laravel-simple-auth repository on GitHub! and don't forget to give it a star ⭐
I hope you enjoy this article, see you in the next one!
Comments (0)