123456789101112131415161718192021222324252627282930313233 |
- <div {!! $attributes !!}>
- <ul class="nav nav-tabs">
- @foreach($tabs as $id => $tab)
- @if($tab['type'] == \Dcat\Admin\Widgets\Tab::TYPE_CONTENT)
- <li {{ $id == $active ? 'class=active' : '' }}><a href="#tab_{{ $tab['id'] }}" class="waves-effect waves-40" data-toggle="tab">{!! $tab['title'] !!}</a></li>
- @elseif($tab['type'] == \Dcat\Admin\Widgets\Tab::TYPE_LINK)
- <li {{ $id == $active ? 'class=active' : '' }}><a href="{{ $tab['href'] }}" class="waves-effect waves-40">{!! $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" style="{!! $padding !!}">
- @foreach($tabs as $id => $tab)
- <div class="tab-pane {{ $id == $active ? 'active' : '' }}" id="tab_{{ $tab['id'] }}">
- {!! $tab['content'] ?? '' !!}
- </div>
- @endforeach
- </div>
- </div>
|