{{-- resources/views/components/explorecards.blade.php --}} @if($latest && $latest->count())
{{-- Judul Explore --}}

Explore

{{-- Grid Card --}}
@foreach($latest as $item)
{{-- Cover / Thumbnail --}} @if($item->media && $item->media->count()) {{ $item->title }} @else
No image
@endif {{-- Info kecil --}}
@if($item->category) {{ $item->category }} @endif {{ $item->status ?? '-' }} {{ $item->start_at?->format('d M Y, H:i') ?? '-' }}
{{-- Title --}}

{{ $item->title }}

{{-- Description --}}

{{ \Illuminate\Support\Str::limit($item->excerpt ?? $item->description ?? '-', 80) }}

{{-- Footer --}}
Lihat detail → {{ $item->price_type === 'gratis' ? 'Gratis' : 'Berbayar' }}
@endforeach
@endif