Class 'Illuminate\Support\Facades\Input' not found
问题 I have an error when upgrading laravel 6 Symfony \ Component \ Debug \ Exception \ FatalThrowableError (E_ERROR) Class 'Illuminate\Support\Facades\Input' not found Source code: ERROR: can you help to fix my code? 回答1: if you're using less version of Laravel 5.2 In config/app.php , replace: 'Input' => Illuminate\Support\Facades\Input::class, Or You can import Input facade directly as required, use Illuminate\Support\Facades\Input; In Laravel 5.2 Input:: is replaced with Request:: use Request::