In my routes.php file I have :
Route::get(\'/\', function () {
return view(\'login\');
});
Route::get(\'/index\', function(){
return v
It's changed in laravel 6. See for more info here
Don't do anything in app.php and anywhere else, just replace
input::get() with Request::input()
and
on top where you declare Input,Validator,Hash etc., remove Input and add Request
use something like :
Config,DB,File,Hash,Input,Redirect,Session,View,Validator,Request;