Laravel Blade Templates Section Repeated / cache error
问题 I am looking to Bootstrap my site and as such, have put common twitter bootstrap components into blade templates. sidebar.blade.php @include('panel1') @include('panel2') panelTemplate.blade.php <div class="panel panel-primary"> <div class="panel-heading"> <div class="panel-title"> @yield('title') </div> </div> <div class="panel-body"> @yield('body') </div> <div class="panel-footer"> @yield('footer') </div> </div> This way, every time I wish to use a panel, then I can use @extends(