Laravel - Target class [App\Http\Controllers\Request] does not exist - Solved

By Hardik Savani November 5, 2023 Category : Laravel

In this tutorial, I will show you laravel Target class [App\Http\Controllers\Request] does not exist. I explained simply about laravel class app http controllers request does not exist. This article goes in detailed on class request does not exist laravel. if you have a question about the target class app http controllers request does not exist. laravel then I will give a simple example with a solution. you will do the following things for Target class [App\Http\Controllers\Request] does not exist in laravel.

You can solve 'Target class [App\Http\Controllers\Request] does not exist' issue in laravel 6, laravel 7, laravel 8, laravel 9 and laravel 10 versions.

A few days ago I was working on my laravel app and I want to get all query string data using Request. When I run the project then I found 'Target class [App\Http\Controllers\Request] does not exist' error. you can see bellow screenshot as well.

Issue:

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

use Illuminate\Http\Request;

Example:

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

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class UserController extends Controller

{

/**

* Display a listing of the resource.

*

* @return \Illuminate\Http\Response

*/

public function index(Request $request)

{

$input = $request->all();

return view('users');

}

}

I hope it can help you...

Tags :
Shares