Namespacing in laravel is straightforward and aliasing the classes is fine, However I am having to alias even the most basic classes that are almost evident in every route like Input, Redirect etc. Without namespacing I dont have to use these they are preloaded and identified.
How do I use namespacing at the same time reserving the ability to just use Input & Redirect & Eloquent without having to alias/import in every class I want to use it?
Thanks