HTTP Requests
Accessing The Request Request Path & Method PSR-7 Requests
Retrieving Input Old Input Cookies
Files Retrieving Uploaded Files Storing Uploaded Files
Accessing The Request
To obtain an instance of the current HTTP request via dependency injection, you should type-hint the Illuminate\Http\Request class on your controller method. The incoming request instance will automatically be injected by the service container:
<?php
namespace App\Http\Controllers;
use Illuminate