Answers for "auth.php Class "\App\User" not found"

PHP
0

auth.php Class "\App\User" not found

Go to config/auth.php and change App\User:class to App\Models\User::class.

'providers' => [
    'users' => [
        'driver' => 'eloquent',
        'model' => App\Models\User::class,
    ],
Also change the namespace of User.php model

namespace App\Models;
Posted by: Guest on July-17-2021

Code answers related to "auth.php Class "\App\User" not found"

Browse Popular Code Answers by Language