auth php class 22 5capp 5cuser 22 not found

Solutions on MaxInterview for auth php class 22 5capp 5cuser 22 not found by the best coders in the world

showing results for - "auth php class 22 5capp 5cuser 22 not found"
Lya
27 Mar 2016
1
2Go to config/auth.php and change App\User:class to App\Models\User::class.
3
4'providers' => [
5    'users' => [
6        'driver' => 'eloquent',
7        'model' => App\Models\User::class,
8    ],
9Also change the namespace of User.php model
10
11namespace App\Models;