ItSolutionStuff.com

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

By Hardik Savani • April 16, 2024
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, laravel 10 and laravel 11 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: 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 Create Custom Helper Functions Example

Read Now →

Laravel 9 CRUD Application Tutorial Example

Read Now →

How to Add Foreign Key in Laravel Migration?

Read Now →

How to Send SMS using Twilio in Laravel?

Read Now →

Laravel Livewire Delete Confirmation Example

Read Now →

Laravel Firebase Push Notification Tutorial

Read Now →

Laravel Unique Validation on Update Example

Read Now →

Laravel Collection Duplicates Method Example

Read Now →

Laravel Collection first() and firstWhere() Methods Example

Read Now →

Laravel Model Caching - Performance Boost Tutorial

Read Now →

Laravel Order By Relationship Sum Column Example

Read Now →