Detail Kegiatan

{{ $kegiatan->title }}

{{-- Tombol admin --}}
@if(Auth::check()) {{-- hanya tampil jika login --}} Edit
@csrf @method('DELETE')
@endif
{{-- Cover --}} @if($kegiatan->cover_url)
{{ $kegiatan->title }}
@endif {{-- Info dasar --}}
Organizer
{{ $kegiatan->organizer ?: '-' }}
Quota
{{ $kegiatan->quota ?: '-' }}
Start
{{ $kegiatan->start_at ? $kegiatan->start_at->format('d M Y H:i') : '-' }}
End
{{ $kegiatan->end_at ? $kegiatan->end_at->format('d M Y H:i') : '-' }}
Location
{{ $kegiatan->location ?: '-' }}
Meeting Link
{{ $kegiatan->meeting_link ?: '-' }}
Registration URL
{{ $kegiatan->registration_url ?: '-' }}
{{-- Description --}}

Description

{{ $kegiatan->description ?: '-' }}

{{-- Gallery --}} @if($kegiatan->media && $kegiatan->media->count())

Gallery

@foreach($kegiatan->media as $media)
Gallery
@endforeach
@endif {{-- Related & Trending (opsional) --}} @if(isset($related) && $related->count())

Related Kegiatan

@foreach($related as $r)
@if($r->cover_url) @endif
{{ $r->title }}
@endforeach
@endif @if(isset($trending) && $trending->count())

Trending Kegiatan

@foreach($trending as $t)
@if($t->cover_url) @endif
{{ $t->title }}
@endforeach
@endif