@extends('layouts.nova') @section('meta-description', $meta['description'] ?? '') @push('head') {{ $meta['title'] ?? ($card['title'] . ' - Nova Cards - Skinbase Nova') }} @if(!empty($meta['robots'])) @endif @if(!empty($card['og_preview_url'])) @endif @endpush @section('content')
@if(!empty($card['preview_url'])) {{ $card['title'] }} @endif
@if(!empty($card['featured'])) Featured @endif {{ $card['format'] }} @if(!empty($card['category'])) {{ $card['category']['name'] }} @endif

{{ $card['title'] }}

{{ $card['quote_text'] }}
@if(!empty($card['quote_author']))

— {{ $card['quote_author'] }}

@endif @if(!empty($card['quote_source']))

Source: {{ $card['quote_source'] }}

@endif @if(!empty($card['description']))

{{ $card['description'] }}

@endif @if(!empty($card['lineage']['original_card'])) @endif @if(!empty($card['lineage']['original_card']) || (int) ($card['remixes_count'] ?? 0) > 0) @endif

Creator

{{ $card['creator']['name'] ?: ('@' . $card['creator']['username']) }}
@{{ $card['creator']['username'] }}
{{ number_format($card['views_count']) }} views
{{ number_format($card['shares_count']) }} shares
{{ number_format($card['likes_count']) }} likes
Likes
{{ number_format($card['likes_count']) }}
Saved
{{ number_format($card['saves_count']) }}
Remixes
{{ number_format($card['remixes_count']) }}
@if(!empty($card['tags']))
@foreach($card['tags'] as $tag) #{{ $tag['name'] }} @endforeach
@endif
@auth @if(!empty($card['allow_remix'])) @endif @endauth @if(!empty($card['allow_download']) && !empty($card['preview_url'])) Download preview @endif

Discussion

Comments

{{ count($comments ?? []) }}
@if(session('status'))
{{ session('status') }}
@endif @auth
@csrf
@else
Sign in to comment on this Nova Card.
@endauth
@forelse($comments as $comment)
{{ $comment['user']['display'] }}
{{ $comment['user']['display'] }}
{{ $comment['time_ago'] }}
@if($comment['can_report']) @endif @if($comment['can_delete'])
@csrf @method('DELETE')
@endif
{!! $comment['rendered_content'] !!}
@empty
No comments yet.
@endforelse
@foreach([ 'Related in category' => $relatedByCategory, 'Related by tags' => $relatedByTags, 'More from creator' => $moreFromCreator, ] as $sectionTitle => $items) @if(!empty($items))

{{ $sectionTitle }}

@foreach($items as $item) @include('cards.partials.tile', ['card' => $item]) @endforeach
@endif @endforeach @endsection @push('scripts') @endpush