1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- @php
- $depth = $item['depth'] ?? 0;
- $horizontal = config('admin.layout.horizontal_menu');
- $defaultIcon = config('admin.menu.default_icon', 'feather icon-circle');
- $num = \App\Admin\Repositories\DistInquiry::getProcessingNum();
- @endphp
- @if($builder->visible($item))
- @if(empty($item['children']))
- <li class="nav-item">
- <a data-id="{{ $item['id'] ?? '' }}" @if(mb_strpos($item['uri'], '://') !== false) target="_blank" @endif
- href="{{ $builder->getUrl($item['uri']) }}"
- class="nav-link {!! $builder->isActive($item) ? 'active' : '' !!}">
- {!! str_repeat(' ', $depth) !!}<i class="fa fa-fw {{ $item['icon'] ?: $defaultIcon }}"></i>
- <p>
- {!! $builder->translate($item['title']) !!}
- </p>
- @if($item['title'] == 'Inquiry' && $num > 0) <i class="badge badge-danger">{{$num}}</i>@endif
- </a>
- </li>
- @else
- <li class="{{ $horizontal ? 'dropdown' : 'has-treeview' }} {{ $depth > 0 ? 'dropdown-submenu' : '' }} nav-item {{ $builder->isActive($item) ? 'menu-open' : '' }}">
- <a href="#" data-id="{{ $item['id'] ?? '' }}"
- class="nav-link {{ $builder->isActive($item) ? ($horizontal ? 'active' : '') : '' }}
- {{ $horizontal ? 'dropdown-toggle' : '' }}">
- {!! str_repeat(' ', $depth) !!}<i class="fa fa-fw {{ $item['icon'] ?: $defaultIcon }}"></i>
- <p>
- {!! $builder->translate($item['title']) !!}
- @if(! $horizontal)
- <i class="right fa fa-angle-left"></i>
- @endif
- </p>
- </a>
- <ul class="nav {{ $horizontal ? 'dropdown-menu' : 'nav-treeview' }}">
- @foreach($item['children'] as $item)
- @php
- $item['depth'] = $depth + 1;
- @endphp
- @include('admin::partials.menu', ['item' => $item])
- @endforeach
- </ul>
- </li>
- @endif
- @endif
|