From f4b31b450030154cc4945f804df3e98969786bce Mon Sep 17 00:00:00 2001 From: Darmaan Date: Mon, 31 May 2021 05:15:48 +0430 Subject: [PATCH] Fix Class AppUser not found error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 512c013..5f0cdcd 100644 --- a/README.md +++ b/README.md @@ -457,7 +457,7 @@ Edit the `app\Http\Controllers\Auth\RegisterController.php` file. ```PHP namespace App\Http\Controllers\Auth; - use App\User; + use App\Models\User; use App\Http\Controllers\Controller; use Illuminate\Support\Facades\Validator; use Illuminate\Foundation\Auth\RegistersUsers;