{{ $contentType->name }}
@foreach ($category->breadcrumbs as $crumb)
› {{ $crumb->name }}
@endforeach
@php
// Use the current (last) breadcrumb as the header so
// the page shows the leaf category name (e.g. "Winamp").
$breadcrumbs = is_array($category->breadcrumbs) ? $category->breadcrumbs : [$category];
$headerCategory = end($breadcrumbs) ?: $category;
@endphp
{{ $headerCategory->name }}
{{ $headerCategory->name }}
{!! $headerCategory->description ?? ($contentType->name . ' artworks on Skinbase.') !!}
@forelse ($artworks as $art)
@include('legacy._artwork_card', ['art' => $art])
@empty
@endforelse
No Artworks Yet
Once uploads arrive they will appear here. Check back soon.
@if ($artworks instanceof \Illuminate\Contracts\Pagination\Paginator)
{{ $artworks->links() }}
@endif