@if(!empty($company_logo)) Company Logo @endif

{{ $company_name ?? '' }}

{{ $company_address ?? '' }}

{{-- Client Data --}} @if(!empty($client))

Client Information

Name: {{ $client['name'] ?? '' }}

Company Role: {{ $client['company_role'] ?? '' }}

Email: {{ $client['email'] ?? '' }}

Phone: {{ $client['phone'] ?? '' }}

@endif {{-- Training Program Data --}} @if(!empty($trainingProgram))

Training Program

@foreach($trainingProgram as $program)

{{ $program['title'] ?? '' }}

@if(!empty($program['is_paid'])) @if($program['is_paid']) @endif @endif
Category{{ $program['category'] ?? '' }}
Company{{ $program['company_name'] ?? '' }}
Global Objective{{ $program['global_objective'] ?? '' }}
Educational Objective{{ $program['educational_objective'] ?? '' }}
Duration{{ $program['duration'] ?? '' }}
Rhythm{{ $program['rhythm'] ?? '' }}
Prerequisites{{ $program['prerequisites'] ?? '' }}
Paid{{ $program['is_paid'] ? 'Yes' : 'No' }}
Price{{ $program['price'] ?? '' }}
Start Date{{ $program['start_date'] ?? '' }}
End Date{{ $program['end_date'] ?? '' }}
{{-- Sessions --}} @if(!empty($program['sessions']))

Sessions

@foreach($program['sessions'] as $session)

{{ $session['title'] ?? '' }} ({{ $session['start_date'] ?? '' }} - {{ $session['end_date'] ?? '' }})

Trainer: {{ $session['trainer_name'] ?? '' }}

{{-- Lessons --}} @if(!empty($session['lessons'])) @foreach($session['lessons'] as $lesson) @endforeach
Title Type Sub Type Value Duration (Minutes) Required
{{ $lesson['title'] ?? '' }} {{ $lesson['type'] ?? '' }} {{ $lesson['sub_type'] ?? '' }} {{ $lesson['value'] ?? '' }} {{ $lesson['duration_minutes'] ?? '' }} {{ !empty($lesson['is_required']) ? 'Yes' : 'No' }}
@endif @endforeach @endif @endforeach
@endif {{-- Participants --}} @if(!empty($client['role']) && strtolower($client['role']) === 'manager' && !empty($participants))

Participants

@foreach($participants as $p) @endforeach
First NameLast NameEmailPhoneCompany Role
{{ $p['firstname'] ?? '' }} {{ $p['lastname'] ?? '' }} {{ $p['email'] ?? '' }} {{ $p['phone'] ?? '' }} {{ $p['company_role'] ?? '' }}
@endif {{-- Trainers --}} @if(!empty($trainers))

Trainers

@foreach($trainers as $t) @endforeach
First NameLast NameEmailPhone
{{ $t['firstname'] ?? '' }} {{ $t['lastname'] ?? '' }} {{ $t['email'] ?? '' }} {{ $t['phone'] ?? '' }}
@endif