Skip to content

Instantly share code, notes, and snippets.

@kdes70
Created December 1, 2016 18:25
Show Gist options
  • Save kdes70/6027b087284e464cf1f1d6a01353cd68 to your computer and use it in GitHub Desktop.
Save kdes70/6027b087284e464cf1f1d6a01353cd68 to your computer and use it in GitHub Desktop.
Чтобы поместить HTML боковой панели в шаблоне blade. (Laravel)
@include('partials.sidebar')
To pass the data the sidebar needs (in AppServiceProvider boot method) :
view()->composer('partials.sidebar', function ($view) {
// Get the $data
$view->with('data', $data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment