{{-- Browse section-switcher pills. Expected variable: $section (string) — one of: artworks, photography, wallpapers, skins, other --}} @php $active = $section ?? 'artworks'; $includeTags = (bool) ($includeTags ?? false); $sections = collect([ 'artworks' => ['label' => 'All Artworks', 'icon' => 'fa-border-all', 'href' => '/browse'], 'photography' => ['label' => 'Photography', 'icon' => 'fa-camera', 'href' => '/photography'], 'wallpapers' => ['label' => 'Wallpapers', 'icon' => 'fa-desktop', 'href' => '/wallpapers'], 'skins' => ['label' => 'Skins', 'icon' => 'fa-layer-group', 'href' => '/skins'], 'other' => ['label' => 'Other', 'icon' => 'fa-folder-open', 'href' => '/other'], ]); if ($includeTags) { $sections->put('tags', ['label' => 'Tags', 'icon' => 'fa-tags', 'href' => '/tags']); } @endphp