Laravel - Class "App\Http\Controllers\View" not found - Solved
In this example, you will learn Laravel Class "App\Http\Controllers\View" not found. I’m going to show you about laravel class app http controllers view not found. This tutorial will give you a simple example of laravel view not found. I’m going to show you about Class 'App\Http\Controllers\View' not found in laravel.
You can solve 'Class "App\Http\Controllers\View" 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 blade file using View facade. When I run the project then I found 'Class "App\Http\Controllers\View" not found' error. you can see bellow screenshot as well.
Issue:
After some research, I found that If you are using the "View" 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\View;" on top of controller, middleware, command, event or blade files. Let's see bellow:
use Illuminate\Support\Facades\View;
Example:
You can see controller file code, how to use it.
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\View;
class UserController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index(Request $request)
{
return View::make('users');
}
}
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel 9 Clear Cache of Route, View, Config, Event Commands
- Laravel Group By with Min Value Query Example
- How to Clone Laravel Project from Github on Server?
- Laravel Blade Switch Case Statement Example
- How to Create Blade File in Laravel using CMD?
- How to Get Current URL in Laravel?
- Laravel Generate PDF from HTML View File and Download Example
- How to Pass Data to All Views using Composer Share in Laravel?
- How to use Inject View in Laravel?
- Laravel Ajax Render View With Data Example
- Laravel Blade Check if View Exists or Not Example