Answers for "class 'app auth' not found"

PHP
4

Class "App\Http\Controllers\Auth" not found

use Illuminate\Support\Facades\Auth;
Posted by: Guest on June-09-2021
1

Class "\App\User" not found

Go to config/auth.php and change this file
'providers' => [
        'users' => [
            'driver' => 'eloquent',
            'model' => App\Models\User::class,
        ],
    ]
Posted by: Guest on November-21-2021

Code answers related to "class 'app auth' not found"

Browse Popular Code Answers by Language