hEShaN
hEShaN

Reputation: 581

Auth controller not found

I did not find deafult AuthController when i build a project in laravel why? There are four other controllers forgotPasswordController, LoginController,RegisterController, ResetPasswordController why?

Upvotes: 1

Views: 257

Answers (1)

Alexey Mezenin
Alexey Mezenin

Reputation: 163898

php artisan make:auth will create AuthController controller and views in 5.2.

In 5.3 it will generate LoginController and RegisterController which are doing the same thing as AuthController in 5.2.

https://laravel.com/docs/5.3/authentication#authentication-quickstart

Upvotes: 1

Related Questions