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

Our Certified Coaches

@if($coaches->count() > 0)
@foreach($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
@if($coach->bio)

{{ $coach->bio }}

@endif
@endforeach
@else

No active coaches registered in the system.

@endif
@endsection