Class Illuminate Support Facades Input Not Found Laravel 7

[Solved] Class Illuminate Support Facades Input Not Found Laravel 7 | Php - Code Explorer | yomemimo.com
Question : class 'illuminate support facades input' not found laravel 7

Answered by : lokesh-ramchandani

In Laravel 5.2 Input:: is replaced with Request::
use Request::
Add to the top of Controller or any other Class
use Illuminate\Support\Facades\Request;

Source : | Last Update : Fri, 27 Nov 20

Answers related to class illuminate support facades input not found laravel 7

Code Explorer Popular Question For Php