| 12345678910111213141516171819202122232425262728293031323334 | 
							- <div {!! $attributes !!}>
 
-     <ul class="nav nav-tabs nav-tabs">
 
-         @foreach($tabs as $id => $tab)
 
-             @if($tab['type'] == \Encore\Admin\Widgets\Tab::TYPE_CONTENT)
 
-                 <li {{ $id == $active ? 'class=active' : '' }}><a href="#tab_{{ $tab['id'] }}" data-toggle="tab">{{ $tab['title'] }}</a></li>
 
-             @elseif($tab['type'] == \Encore\Admin\Widgets\Tab::TYPE_LINK)
 
-                 <li {{ $id == $active ? 'class=active' : '' }}><a href="{{ $tab['href'] }}">{{ $tab['title'] }}</a></li>
 
-             @endif
 
-         @endforeach
 
-         @if (!empty($dropDown))
 
-         <li class="dropdown">
 
-             <a class="dropdown-toggle" data-toggle="dropdown" href="#">
 
-                 Dropdown <span class="caret"></span>
 
-             </a>
 
-             <ul class="dropdown-menu">
 
-                 @foreach($dropDown as $link)
 
-                 <li role="presentation"><a role="menuitem" tabindex="-1" href="{{ $link['href'] }}">{{ $link['name'] }}</a></li>
 
-                 @endforeach
 
-             </ul>
 
-         </li>
 
-         @endif
 
-         <li class="pull-right header">{{ $title }}</li>
 
-     </ul>
 
-     <div class="tab-content">
 
-         @foreach($tabs as $id => $tab)
 
-         <div class="tab-pane {{ $id == $active ? 'active' : '' }}" id="tab_{{ $tab['id'] }}">
 
-             {!! array_get($tab, 'content') !!}
 
-         </div>
 
-         @endforeach
 
-     </div>
 
- </div>
 
 
  |