PLATFORM
  • Tails

    Create websites with TailwindCSS

  • Wave

    Start building the next great SAAS

  • Pines

    Alpine & Tailwind UI Library

  • Auth

    Plug'n Play Authentication for Laravel

  • Designer comingsoon

    Create website designs with AI

  • DevBlog comingsoon

    Blog platform for developers

  • Static

    Build a simple static website

  • SaaS Adventure

    21-day program to build a SAAS

Written By
Views

Re-enable the make:auth command for Laravel 6+ versions.

Re-enable the make:auth command for Laravel 6+ versions.

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.

  1. Run the following command on your laravel project root path:
    composer require dasundev/laravel-simple-auth
    
  2. Now it's time to enjoy the missing make:auth command. 😜
    php artisan make:auth
    
  3. 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)

loading comments