I have an error when upgrading laravel 6
Symfony \\ Component \\ Debug \\ Exception \\ FatalThrowableError (E_ERROR) Class \'Illuminate\\Support\\F
I have resolved below it worked for me
Step 1: Access the link: yourproject\vendor\laravel\framework\src\Illuminate\Support\Facades
Step 2: Create a file with the file name: Input.php
Step 3: Paste the code below into the file you just created and save
input($key, $default);
}
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'request';
}
}
Step 4: Rerun your project
Done.Good luck!