Laravel - Class "App\Http\Controllers\Config" not found - Solved

By Hardik Savani November 5, 2023 Category : Laravel

This simple article demonstrates of laravel config class not found. if you want to see example of Laravel Class "App\Http\Controllers\Config" not found then you are a right place. This tutorial will give you simple example of laravel class app http controllers config not found. if you want to see an example of laravel config not found then you are the right place.

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

A few days ago I was working on my laravel app and I simply getting app name using Config facade. When I run the project then I found 'Class "App\Http\Controllers\Config" not found' error. you can see bellow screenshot as well.

Issue:

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...

Tags :
Shares