@php $sidebarCats = $allCategories ?? $categories ?? collect(); $activeCatId = isset($category) ? $category->id : null; $activeParentId = isset($category) ? ($category->parent_id ?? null) : null; $isRootPage = !isset($category); @endphp
{{-- 上傳按鈕(僅管理員)--}} @if($isAdmin)
@endif {{-- 根目錄 --}} {{ $systemName }} {{-- 目錄樹 --}} @foreach($sidebarCats as $rootCat) {{ $rootCat->name }} @foreach($rootCat->children as $child) {{ $child->name }} @endforeach @endforeach
{{-- ── 新增目錄 Modal(僅管理員)── --}} @if($isAdmin) @endif