use Illuminate\Http\Request;
use Illuminate\Support\Facades\Input;
Although I use these libraries, the input gives an error. Even if I add request or name input path to app.php in the config file, the problem is not resolved.
public function get_deneme(){
$name=Input::get('name');
$var="asd";
return view('deneme')->with('var',$var);
}
ERROR: Input is underlined (Undefined type 'Illuminate\Support\Facades\Input'.)
NOTE : Laravel Framework 9.29.0