Class 'Illuminate\Support\Facades\Input' not found

前端 未结 11 1764
生来不讨喜
生来不讨喜 2021-01-12 05:14

I have an error when upgrading laravel 6

Symfony \\ Component \\ Debug \\ Exception \\ FatalThrowableError (E_ERROR) Class \'Illuminate\\Support\\F

11条回答
  •  北海茫月
    2021-01-12 05:48

    In Laravel 5.2 Input:: is replaced with Request::

    use

    Request::

    Add to the top of Controller or any other Class

    use Illuminate\Http\Request;

    Source: https://stackoverflow.com/a/37203477/12089073

提交回复
热议问题