Laravel: Class ‘Input’ not found
When I start the Laravel project at that time I fetch this problem Class ‘Input’ not found an error. So you can Use Illuminate\Support\Facades\Input as input;
And It’s store into the database via route.
Now Open app.php and add the Input class:
#config/app.php 'aliases' => [ ... 'Input' => Illuminate\Support\Facades\Input::class, ... ],
Use Controller file
use Illuminate\Support\Facades\Input;
==OR==
use Input;
[…] Read full example: https://devnote.in/laravel-class-input-not-found […]