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

前端 未结 11 1773
生来不讨喜
生来不讨喜 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:55

    The very best way to fix this is to copy the Input.php file which laravel provided here and paste the file in your project directory.

    Don't forget to add this to your controller use Illuminate\Http\Request;

    laravelproject\vendor\laravel\framework\src\Illuminate\Support\Facades

提交回复
热议问题