@extends('layouts.nova') @section('meta-description', $meta['description'] ?? '') @push('head') {{ $meta['title'] ?? 'Nova Card Lineage - Skinbase Nova' }} @if(!empty($meta['robots'])) @endif @endpush @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