@extends('layouts.nova') @section('meta-description', $meta['description'] ?? '') @push('head') {{ $meta['title'] ?? ($collection['name'] . ' - Nova Cards Collection - Skinbase Nova') }} @if(!empty($meta['robots'])) @endif @endpush @section('content')
{{ $collection['cards_count'] }} cards @if(!empty($collection['official'])) Official @endif

{{ $collection['name'] }}

{{ $collection['description'] ?: 'A curated Nova Cards collection.' }}

@if(empty($collection['items']))

No public cards in this collection yet

Cards added here will appear once they are public and approved.

@else
@foreach($collection['items'] as $item)
@include('cards.partials.tile', ['card' => $item['card']]) @if(!empty($item['note']))
{{ $item['note'] }}
@endif
@endforeach
@endif
@endsection