@extends('layouts.public') @section('title', 'مربیان') @section('content')

مربیان

مربی مناسب هدف خودتان را پیدا کنید

@forelse($coaches as $coach)
@if($coach->photo_path) @else
{{ mb_substr($coach->user->first_name, 0, 1) }}
@endif
{{ $coach->user->fullName() }}
{{ $coach->experience_years ?? 0 }} سال سابقه
@foreach($coach->goals->take(3) as $goal) {{ $goal->title }} @endforeach
@if($coach->program_price)
از {{ number_format($coach->program_price) }} تومان
@endif
@empty

مربی‌ای با این فیلتر یافت نشد.

@endforelse
{{ $coaches->links() }}
@endsection