Reputation: 427
In auth.php
providers' => [
'users' => [
'driver' => 'eloquent',
'model' => App\Models\User::class,
],
and in models/user.php
namespace App\Models;
but message still
Class '\App\Models\User' not found
Upvotes: 0
Views: 2007
Reputation: 4173
hmmm yes you should change use App\Models;
to namespace App\Models;
and use App\Models\User;
Upvotes: 1