@props(['comic', 'index', 'showFullInfo' => true]) @php $rankColors = [ 0 => 'text-yellow-500', 1 => 'text-gray-400', 2 => 'text-amber-700' ]; $rankColor = $rankColors[$index] ?? 'text-gray-600'; $isTopThree = $index < 3; @endphp
{{ $index + 1 }}
@if($showFullInfo && $isTopThree)
@endif

{{ $comic->title }}

@if($showFullInfo && $isTopThree)

{{ $comic->author?->name }} • {{ number_format($comic->view_count / 1000000, 1) }}M views

@endif
@if(!$isTopThree) {{ number_format($comic->view_count / 1000000, 1) }}M @endif