Error: Class 'App\Http\Controllers\config' not found

30-Mar-2022

.

Admin

Error: Class 'App\Http\Controllers\config' not found

Today, I will show you Class 'App\Http\Controllers\config' not found. This artical is simply explain error - Class 'App\Http\Controllers\config'. This example show you config class not found solve error in laravel. In this post laravel solve error in config class not found. I will so you laravel error not found config class.

You can solve 'Class "App\Http\Controllers\Config" not found' issue in laravel 6, laravel 7, laravel 8 and laravel 9 version.

So, let's start following example:

Error:


After some research, I found that If you are using the "Config" facade in Controller, Middleware, or blade file then you must have used facade on top.

so let's see bellow solution and example code here:

Solution:

You must need to add "use Config;" on top of controller, middleware, command, event or blade files. Let's see bellow:

use Config;

Example:

You can see controller file code, how to use it.

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Config;

class UserController extends Controller

{

/**

* Display a listing of the resource.

*

* @return \Illuminate\Http\Response

*/

public function index(Request $request)

{

$appName = Config::get('app.name');

return view('users');

}

}

I hope it can help you...

#Laravel