@extends('layouts.admin-club') @section('club-admin-content')

Instructors

Manage your club instructors and trainers

@if(isset($instructors) && count($instructors) > 0)
@foreach($instructors as $instructor)
@if($instructor->photo) {{ $instructor->name }} @else
{{ strtoupper(substr($instructor->name, 0, 1)) }}
@endif
{{ $instructor->name }}

{{ $instructor->specialization ?? 'Trainer' }}

@if($instructor->bio)

{{ Str::limit($instructor->bio, 80) }}

@endif
@endforeach
@else
No instructors yet

Add instructors to your club

@endif
@endsection