2026-02-07 22:55:07 +08:00
|
|
|
<div class="sidebar-block">
|
|
|
|
|
<div class="sidebar-title">分类导航</div>
|
2026-02-05 22:22:10 +08:00
|
|
|
<div class="category-list">
|
|
|
|
|
@foreach($sidebarCategories as $category)
|
|
|
|
|
<details class="category-group" @if($loop->first) open @endif>
|
|
|
|
|
<summary>
|
|
|
|
|
<span>
|
|
|
|
|
@if($category->icon)
|
|
|
|
|
<span class="icon">{{ $category->icon }}</span>
|
|
|
|
|
@endif
|
|
|
|
|
{{ $category->name }}
|
|
|
|
|
</span>
|
|
|
|
|
<span class="count">{{ $category->products_count }}</span>
|
|
|
|
|
</summary>
|
|
|
|
|
<ul>
|
|
|
|
|
@foreach($category->children as $child)
|
|
|
|
|
<li>
|
|
|
|
|
<a href="{{ route('categories.show', $child->slug) }}">
|
|
|
|
|
{{ $child->name }}
|
|
|
|
|
<span class="count">{{ $child->products_count }}</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
@endforeach
|
|
|
|
|
</ul>
|
|
|
|
|
</details>
|
|
|
|
|
@endforeach
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|