@extends('layouts.app') @section('title', 'Media Gallery - Lumbini Province Taekwondo Association') @section('content')

Our Media Gallery

@if($albums->count() > 0) @foreach($albums as $album)

{{ $album->name }}

@if($album->description)

{{ $album->description }}

@endif
{{ $album->items->count() }} Media Items
@foreach($album->items as $item) @php $linkUrl = '#'; $isImage = false; if ($item->type === 'video' && !empty($item->video_url)) { $linkUrl = $item->video_url; } elseif ($item->type === 'image' && !empty($item->file_path)) { $linkUrl = asset($item->file_path); $isImage = true; } @endphp
@if($isImage)
@if($item->file_path && file_exists(public_path($item->file_path))) {{ $item->caption }} @else
📷
@endif
{{ $item->caption ?? 'Event Photo' }}
@else
🎥
{{ $item->caption ?? 'Video Highlight' }}
@endif
@endforeach
@endforeach @else

No Albums Created

Our media team is currently preparing highlights. Check back soon for high-resolution event coverage, matches, and grading ceremony photos.

@endif
@endsection