0

I have added following line in app.php in alias section and have used in controll as "use input"

'Input' => Illuminate\Support\Facades\Input::class,

still it gives error input class not found

error

Aravind S
  • 1
  • 1
  • 3

1 Answers1

2

Input no longer exists. Use Request instead of Input.

use Illuminate\Support\Facades\Request;
trashrobber
  • 727
  • 2
  • 9
  • 26
Logu
  • 29
  • 5