github 4 years ago
software development #Web Development

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.

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

GitHub