@if (!empty($training_company['profile'])) Company Logo @endif

{{ $training_company->fullname ?? '' }}

{{ $company_address ?? '' }}

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

Client Information

Name {{ $client->fullname ?? '' }}
Company Role {{ $client['company_role'] ?? '' }}
Email {{ $client['email'] ?? '' }}
Phone {{ $client['phone'] ?? '' }}
@endif {{-- Training Program --}} @if (!empty($training_program))

Training Program

@if (!empty($training_program['is_paid'])) @if ($training_program['is_paid']) @endif @endif
Title {{ $training_program['title'] ?? '' }}
Category {{ $training_program->category->name ?? '' }}
Company {{ $training_program->trainingCompany->fullname ?? '' }}
Global Objective {{ $training_program['global_objective'] ?? '' }}
Educational Objective {{ $training_program['educational_objective'] ?? '' }}
Duration {{ $training_program['duration'] ?? '' }}
Rhythm {{ $training_program['rhythm'] ?? '' }}
Prerequisites {{ $training_program['prerequisites'] ?? '' }}
Paid {{ $training_program['is_paid'] ? 'Yes' : 'No' }}
Price ${{ number_format($training_program['price'] ?? 0, 2) }}
Start Date {{ $training_program['start_date'] ?? '' }}
End Date {{ $training_program['end_date'] ?? '' }}
{{-- Session Cards --}} @if (!empty($training_program['sessions'])) @foreach ($training_program['sessions'] as $session)

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

Start Date End Date
{{ $session['start_date'] ?? '' }} {{ $session['end_date'] ?? '' }}

Trainer Details

Name Email Phone
{{ $session['trainer']->fullname ?? '' }} {{ $session['trainer']->email ?? '' }} {{ $session['trainer']->phone ?? '' }}
@if (!empty($session['lessons']))

Lessons

@foreach ($session['lessons'] as $lesson) @endforeach
Title Type Duration (Minutes)
{{ $lesson['title'] ?? '' }} {{ $lesson['type'] ?? '' }} {{ $lesson['duration_minutes'] ?? '' }}
@endif
@endforeach @endif
@endif {{-- Participants --}} @if (!empty($participants))

Participants

@foreach ($participants as $p) @endforeach
First Name Last Name Email Phone Company Role
{{ $p->firstname ?? '' }} {{ $p->lastname ?? '' }} {{ $p->email ?? '' }} {{ $p->phone ?? '' }} {{ $p->company_role ?? '' }}
@endif
Signature