You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.5 KiB
38 lines
1.5 KiB
<div {!! $attributes !!}> |
|
<ul class="nav nav-tabs {{ $tabStyle }}" role="tablist"> |
|
@foreach($tabs as $id => $tab) |
|
@if($tab['type'] == \Dcat\Admin\Widgets\Tab::TYPE_CONTENT) |
|
<li class="nav-item" > |
|
<a href="#tab_{{ $tab['id'] }}" class=" nav-link {{ $id == $active ? 'active' : '' }}" data-toggle="tab">{!! $tab['title'] !!}</a> |
|
</li> |
|
@elseif($tab['type'] == \Dcat\Admin\Widgets\Tab::TYPE_LINK) |
|
<li class="nav-item" > |
|
<a href="{{ $tab['href'] }}" class=" nav-link {{ $id == $active ? 'active' : '' }}">{!! $tab['title'] !!}</a> |
|
</li> |
|
@endif |
|
@endforeach |
|
|
|
@if (!empty($dropDown)) |
|
<li class="dropdown nav-item"> |
|
<a class="dropdown-toggle nav-link" 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="nav-item 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> |