class 'app http controllers admin input' not found in laravel code example

Example: message "Class 'Input' not found"

Input facade definition from config/app.php hence you have to manually add that in to aliases array as below,

'Input' => Illuminate\Support\Facades\Input::class,

Or You can import Input facade directly as required,

use Illuminate\Support\Facades\Input;

Tags:

Php Example