tab.blade.php 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <div {!! $attributes !!}>
  2. <ul class="nav nav-tabs">
  3. @foreach($tabs as $id => $tab)
  4. <li {{ $id == $active ? 'class=active' : '' }}><a href="#tab_{{ $tab['id'] }}" data-toggle="tab">{{ $tab['title'] }}</a></li>
  5. @endforeach
  6. @if (!empty($dropDown))
  7. <li class="dropdown">
  8. <a class="dropdown-toggle" data-toggle="dropdown" href="#">
  9. Dropdown <span class="caret"></span>
  10. </a>
  11. <ul class="dropdown-menu">
  12. @foreach($dropDown as $link)
  13. <li role="presentation"><a role="menuitem" tabindex="-1" href="{{ $link['href'] }}">{{ $link['name'] }}</a></li>
  14. @endforeach
  15. </ul>
  16. </li>
  17. @endif
  18. <li class="pull-right header">{{ $title }}</li>
  19. </ul>
  20. <div class="tab-content">
  21. @foreach($tabs as $id => $tab)
  22. <div class="tab-pane {{ $id == $active ? 'active' : '' }}" id="tab_{{ $tab['id'] }}">
  23. {!! $tab['content'] !!}
  24. </div>
  25. @endforeach
  26. </div>
  27. </div>