I have an error when upgrading laravel 6
Symfony \\ Component \\ Debug \\ Exception \\ FatalThrowableError (E_ERROR) Class \'Illuminate\\Support\\F
In Laravel 5.2 Input:: is replaced with Request::
Input::
Request::
use
Add to the top of Controller or any other Class
use Illuminate\Http\Request;
Source: https://stackoverflow.com/a/37203477/12089073