ItSolutionStuff.com

Laravel App Class not Found Error - Solved

By Hardik Savani • April 16, 2024
Laravel

In this example, you will learn laravel App class not found. This article goes in detailed on Laravel Class "App\Http\Controllers\App" not found. In this article, we will implement a laravel App password class not found. you will learn laravel App not found. So, let's follow few step to create example of Class 'App\Http\Controllers\App' not found in laravel.

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

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

Issue:

After some research, I found that If you are using the "App" class 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\App;" on top of controller, middleware, command, event or blade files. Let's see bellow:

use Illuminate\Support\Facades\App;

Example:

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

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use App\Models\ProductReport;

use Illuminate\Support\Facades\App;

class UserController extends Controller

{

/**

* Write code on Method

*

* @return response()

*/

public function index()

{

$report = App::call([new ProductReport, 'generate']);

return view('users');

}

}

I hope it can help you...

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Laravel 9 REST API Authentication using Sanctum Tutorial

Read Now →

Laravel Sum Query with Where Condition Example

Read Now →

How to Get Online Users in Laravel?

Read Now →

How to Create Custom Blade Directive in Laravel?

Read Now →

Laravel Livewire Wizard Form Example

Read Now →

Laravel Eloquent whereBetween() Query Example

Read Now →

Laravel Eloquent whereRaw Condition Example

Read Now →

Laravel Mobile/Phone Number Validation Example

Read Now →

Laravel Collection Push() and Put() Example

Read Now →

Laravel Bail Rule | Stop Validation On First Failure

Read Now →