@extends('layouts.app') @section('title', 'Lumbini Province Taekwondo Association - Official Website') @section('head') @endsection @section('content')
Official Governing Body · Est. 2012 · Lumbini Province

Lumbini Province
Taekwondo
Association

Uniting 12 districts of Lumbini Province under one flag — developing champions, promoting discipline, and advancing the martial art of Taekwondo across Nepal.

{{ $counters['members'] }}+
Active Members
{{ $counters['clubs'] }}
Affiliated Clubs
{{ $counters['districts'] }}
Districts
🥋
LPTA Nepal
SINCE 2012
Scroll
👥
0
Members
🏟️
0
Clubs
🎽
0
Coaches
🏅
0
Referees
🥇
0
Gold Medals
🥈
0
Silver Medals
🥉
0
Bronze Medals

News & Announcements

All News
@if($featuredNews->count() > 0 || $latestNews->count() > 0)
{{-- Featured big card --}} @if($featuredNews->count() > 0) @php $featured = $featuredNews->first(); @endphp
📰
Featured
{{ $featured->created_at->format('M d, Y') }} {{ $featured->views }} views
{{ $featured->title }}

{{ Str::limit($featured->content, 160) }}

@endif {{-- Side cards --}} @foreach($latestNews->take(2) as $news)
📰
{{ $news->category->name ?? 'News' }}
{{ $news->created_at->format('M d, Y') }}
{{ $news->title }}

{{ Str::limit($news->content, 100) }}

@endforeach {{-- Fill remaining featured if latestNews < 2 --}} @foreach($featuredNews->skip(1)->take(2 - $latestNews->take(2)->count()) as $news)
📰
Featured
{{ $news->created_at->format('M d, Y') }}
{{ $news->title }}

{{ Str::limit($news->content, 100) }}

@endforeach
@else

No news published yet.

@endif

Upcoming Events

All Events
@if($upcomingEvents->count() > 0)
@foreach($upcomingEvents as $event)
@if($event->image && file_exists(public_path($event->image))) {{ $event->title }} @else
🥋
@endif
@if($event->registration_status === 'open') Open @else Closed @endif
{{ $event->start_date->format('d') }}
{{ $event->start_date->format('M Y') }}

{{ $event->title }}

{{ $event->venue }} {{ $event->start_date->format('d M') }} – {{ $event->end_date->format('d M, Y') }} {{ $event->start_date->format('h:i A') }} – {{ $event->end_date->format('h:i A') }}
@endforeach
@else

No upcoming events scheduled.

@endif

Our Achievements

Athletes of Lumbini Province have made Nepal proud on national and international stages.

@if($counters['gold'] > 0 || $counters['silver'] > 0 || $counters['bronze'] > 0)
🥇
{{ $counters['gold'] }}
Gold
🥈
{{ $counters['silver'] }}
Silver
🥉
{{ $counters['bronze'] }}
Bronze
@endif @if(isset($achievements) && $achievements->count() > 0) @php $showAch = $achievements ?? collect([]); @endphp @else @php $showAch = collect([ (object)['title'=>'Gold Medal in 9th National Games','medal_type'=>'gold','player_name'=>'Roshan Shrestha','achievement_date'=>'2024-10-18','type'=>'national','description'=>'Won Gold in the Flyweight (under 54kg) sparring division.'], (object)['title'=>'Silver Medal in National Poomsae Championship','medal_type'=>'silver','player_name'=>'Saraswati Adhikari','achievement_date'=>'2025-03-22','type'=>'national','description'=>'Scored 7.65 points in individual female under-18 Poomsae.'], (object)['title'=>'Bronze Medal in South Asian TKD Championship','medal_type'=>'bronze','player_name'=>'Anil Thapa','achievement_date'=>'2024-12-05','type'=>'international','description'=>'Represented Nepal in the 68kg Sparring category.'], ]); @endphp @endif
@foreach($showAch->take(3) as $ach)
@if($ach->medal_type === 'gold') 🥇 @elseif($ach->medal_type === 'silver') 🥈 @elseif($ach->medal_type === 'bronze') 🥉 @else 🏅 @endif
{{ $ach->title }}
{{ $ach->player_name }}
{{ is_string($ach->achievement_date) ? \Carbon\Carbon::parse($ach->achievement_date)->format('M d, Y') : $ach->achievement_date->format('M d, Y') }}
{{ ucfirst($ach->type) }}
@endforeach
View All Achievements

Coaches & Referees

@forelse($coaches as $coach)
@if($coach->photo) {{ $coach->name }} @else
{{ substr($coach->name, 0, 1) }}
@endif
{{ $coach->name }}
{{ $coach->qualification }}
@if($coach->specialization)
{{ $coach->specialization }}
@endif @if($coach->experience_years)
{{ $coach->experience_years }} Years Experience
@endif @if($coach->club)
{{ $coach->club->name }}
@endif
@empty
No coaches found.
@endforelse
All Coaches
@forelse($referees as $ref)
@if($ref->photo) {{ $ref->name }} @else
{{ substr($ref->name, 0, 1) }}
@endif
{{ $ref->name }}
{{ $ref->certification_level }}
{{ $ref->experience_years }} Yrs Experience
@if($ref->email)
{{ $ref->email }}
@endif
@empty
No referees found.
@endforelse
All Referees

12 Districts of Lumbini Province

LPTA unites all 12 districts of Lumbini Province under a single, unified Taekwondo federation.

@php $districtIcons = ['🏙️','🌳','🌄','⛰️','🏔️','🌿','🌊','🏞️','🗻','🌾','🏡','🌲']; @endphp @foreach($districts as $i => $dist)
{{ $districtIcons[$i % count($districtIcons)] }}
{{ $dist->name }}
Lumbini Province
@endforeach
View Member Directory
🥋

Ready to Begin Your Taekwondo Journey?

Join over {{ $counters['members'] }}+ registered athletes across Lumbini Province. Register today and get your official LPTA membership card.

@endsection @section('scripts') @endsection