Laravel: Get the name of the view that called the controller method
问题 In laravel is it possible to get the name of the view that called the controller method that you're currently in? I have two version of a form in my site. One is meant to be used "outside" of the site (i.e. the user is not logged in) and the other is meant to be used "inside" of the site. The forms differ a bit in presentation, but they hold all of the same fields and call the same store method. Is there a way from within my store method to get the name of the view that called the method? I