first commit
This commit is contained in:
18
resources/views/components/porto/header/menu-item.blade.php
Normal file
18
resources/views/components/porto/header/menu-item.blade.php
Normal file
@ -0,0 +1,18 @@
|
||||
@php
|
||||
$aClass = 'dropdown-item' . (!empty($item['children']) ? 'dropdown-toggle' : '');
|
||||
$aria = !empty($item['children']) ? 'data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false"' : '';
|
||||
$iconDown = !empty($item['children']) ? '<i class="fas fa-chevron-down"></i>' : '';
|
||||
@endphp
|
||||
|
||||
<li class="{{ !empty($item['children']) ? 'dropdown-submenu' : '' }}">
|
||||
<a href="{{ $item['url'] ?? 'javascript:;' }}" class="{{ $aClass }}" {{ $aria }}>
|
||||
{{ $item['title'] }} {{ $iconDown }}
|
||||
</a>
|
||||
@if (!empty($item['children']))
|
||||
<ul class="dropdown-menu">
|
||||
@foreach ($item['children'] as $child)
|
||||
@include('porto::components.header.menu-item', ['item' => $child])
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
</li>
|
Reference in New Issue
Block a user