@php $useUnifiedSeo = true; $seo = \App\Support\Seo\SeoDataBuilder::fromArray( app(\App\Support\Seo\SeoFactory::class)->fromViewData(get_defined_vars()) ) ->addJsonLd([ '@context' => 'https://schema.org', '@type' => 'CollectionPage', 'name' => $meta['title'] ?? 'Nova Card Lineage - Skinbase Nova', 'description' => $meta['description'] ?? 'Trace the remix lineage for this Nova Card.', 'url' => $meta['canonical'] ?? route('cards.lineage', ['slug' => $card['slug'], 'id' => $card['id']]), 'mainEntity' => collect($familyCards ?? [])->map(fn ($familyCard) => [ '@type' => 'CreativeWork', 'name' => data_get($familyCard, 'title'), 'url' => data_get($familyCard, 'public_url'), ])->values()->all(), ]) ->build(); @endphp @extends('layouts.nova') @section('meta-description', $meta['description'] ?? '') @section('content')

Remix lineage

{{ $card['title'] }}

Trace this card back to its root, then browse the rest of the family that grew from the same original.

Trail

@foreach($trail as $index => $item) {{ $item['title'] }} @if($index < count($trail) - 1) @endif @endforeach

Root card

@include('cards.partials.tile', ['card' => $rootCard])

Family variants

Cards in this remix branch

Back to card
@foreach($familyCards as $familyCard) @include('cards.partials.tile', ['card' => $familyCard]) @endforeach
@endsection