I wonder if there is a performance difference between using Facades and helper methods in laravel 5.1.
I am starting to delete, for example, use View;or View::make(), if possible, believing that it view()will be simpler and possibly faster. But I do not know.
Same thing with Redirect::to()→ redirect(), Redirect::back()→ back(), etc.
Is there a difference or does it not matter?
source
share