Error: Class "App\Http\Controllers\Log" not found

05-Jul-2022

.

Admin

Error: Class "App\Http\Controllers\Log" not found

In this quick example, let's see Class 'App\Http\Controllers\Log' not found. you will learn explain error - Class 'App\Http\Controllers\Log'. I would like to show you Log class not found solve error in laravel. you will learn laravel solve the error in Log class not found.

You can solve 'Class "App\Http\Controllers\Log" 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 "Log" 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 Illuminate\Support\Facades\Log;" on top of controller, middleware, command, event or blade files. Let's see bellow:

use Illuminate\Support\Facades\Log;

Example:

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

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Illuminate\Support\Facades\Log;

class UserController extends Controller

{

/**

* Display a listing of the resource.

*

* @return \Illuminate\Http\Response

*/

public function index(Request $request)

{

Log::info('Hi This is from Nicesnippets.com!');

return view('users');

}

}

I hope it can help you...

#Laravel