Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel 7.1.x missing files: AuthenticatesUsers, RegistersUsers

I just upgraded from Laravel 6.x to 7.1.x and now my application is messed up due to changes. One of which is the login authentication.

With the new Laravel 7.1.2, these files are gone.

  1. use Illuminate\Foundation\Auth\RegistersUsers;
  2. use Illuminate\Foundation\Auth\AuthenticatesUsers;

If you are to check the API docs, these files are missing as well. With that, may I know what files they are replaced with?

like image 686
basagabi Avatar asked Mar 14 '20 17:03

basagabi


1 Answers

they are in the https://github.com/laravel/ui package. just install it and you're good to go.

like image 146
Rabah Avatar answered Nov 12 '22 23:11

Rabah