ItSolutionStuff.com

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

By Hardik Savani • April 16, 2024
Laravel

I will explain step by step tutorial Laravel Class "App\Http\Controllers\Response" not found. I’m going to show you about laravel class app http controllers response not found. you will learn laravel response not found. it's simple example of Class 'App\Http\Controllers\Response' not found in laravel. follow bellow step for Laravel Class "App\Http\Controllers\Response" not found.

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

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

Issue:

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

use Illuminate\Support\Facades\Response;

Example:

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

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Illuminate\Support\Facades\Response;

class UserController extends Controller

{

/**

* Display a listing of the resource.

*

* @return \Illuminate\Http\Response

*/

public function index(Request $request)

{

return Response::json(['success' => 'Demo Example!']);

}

}

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 Search Case Insensitive Query Example

Read Now →
ā˜…

How to Image Upload in Laravel Vapor?

Read Now →
ā˜…

How to Install and Use Memcached in Laravel?

Read Now →
ā˜…

Laravel Livewire Toastr Notifications Example

Read Now →
ā˜…

Laravel Eloquent selectRaw() Query Example

Read Now →
ā˜…

Laravel Collection Push() and Put() Example

Read Now →
ā˜…

How to Remove Column from Table in Laravel Migration?

Read Now →
ā˜…

Laravel Improve Site Performance By Caching Entire Response

Read Now →
ā˜…

Laravel Response Download File Example

Read Now →
ā˜…

Laravel Multiple Files Download with Response Example

Read Now →
ā˜…

How to Return JSON Response in Laravel?

Read Now →