Class "AppUser" not found
Go to config/auth.php and change this file
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => AppModelsUser::class,
],
]
Class "AppUser" not found
Go to config/auth.php and change this file
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => AppModelsUser::class,
],
]
auth.php Class "AppUser" not found
Go to config/auth.php and change AppUser:class to AppModelsUser::class.
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => AppModelsUser::class,
],
Also change the namespace of User.php model
namespace AppModels;
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us