Laravel - Target class [App\Http\Controllers\Request] does not exist - Solved
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...
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 Create Custom Helper Functions Example
- Laravel 9 CRUD Application Tutorial Example
- How to Add Foreign Key in Laravel Migration?
- How to Send SMS using Twilio in Laravel?
- Laravel Livewire Delete Confirmation Example
- Laravel Firebase Push Notification Tutorial
- Laravel Unique Validation on Update Example
- Laravel Collection Duplicates Method Example
- Laravel Collection first() and firstWhere() Methods Example
- Laravel Model Caching - Performance Boost Tutorial
- Laravel Order By Relationship Sum Column Example