Blame view
resources/views/part/categories.blade.php
670 Bytes
295e31db7 Флаги производите... |
1 2 3 4 5 6 |
@if ($items->where('parent_id', $parent)->count()) @php $level++ @endphp <? $array = $items->where('parent_id', $parent) ?> @foreach ($array as $item) @if($level) |
477c05de1 Каталог страница,... |
7 |
<li><a href="{{ route('catalog_detail', $item->id)}}">{{ $item->name }}</a></li> |
295e31db7 Флаги производите... |
8 9 10 11 12 13 14 15 16 |
@else </ul> <button class="catalog-accordion js_catalog_accordion">{{$item->name}}</button> <ul class="catalog-accordion-panel"> @endif <? /*if($item == end($array)) {?> </ul> <? $level = -1; }*/?> |
295e31db7 Флаги производите... |
17 |
@include('part.categories', ['level' => $level, 'parent' => $item->id]) |
295e31db7 Флаги производите... |
18 |
@endforeach |
295e31db7 Флаги производите... |
19 |
@endif |