79256111

Date: 2024-12-05 20:17:03
Score: 0.5
Natty:
Report link

the proplem is that your user model is in under App/Model namespace

So you must update auth.php file as below

'providers' => [
'users' => [
    'driver' => 'eloquent',
    'model' => App\Model\User::class,
],

],

it will work fine

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: mallah