Skip to content

Instantly share code, notes, and snippets.

@monkeymonk
Created December 23, 2014 13:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monkeymonk/73e8b4746d2ccd87fe89 to your computer and use it in GitHub Desktop.
Save monkeymonk/73e8b4746d2ccd87fe89 to your computer and use it in GitHub Desktop.
Get current template name in Laravel Blade.
// allow $view_name in views
View::composer('*', function ($view) {
View::share('view_name', $view->getName());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment