watch on aatventure.news

GitHub Top 25 | 18 - Laravel (58.8k)

Learn Laravel 5.8 by creating an Instagram clone in this full tutorial course for beginners. Laravel is a free, open-source PHP web framework used for creating web applications.

2020-04-18 19:00:00 - GitHub

In Laravel 6.0 make:auth no longer exists:

php artisan make:auth ( which works for Laravel 5.8 and older versions )


Solution:

Run :composer require laravel/ui

php artisan ui:auth

You can also generate the views only with:

php artisan ui:auth --views

More Posts