Hi in my project there are many controllers and i want use input everywhere without including in controller at top like this
use Illuminate\Support\Facades\Input; //or
use Input; // if i create alias for the same in app.php
is there any way that without include i get input in whole system without including in all controller at top ?