@extends('layouts.pdf.base') @section('pdf-title', $label ?? 'CFDP Report') @section('pdf-subtitle', 'Child and Family Development Program') @section('pdf-meta') Generated on {{ now()->format('d M Y, h:i A') }} ยท {{ $children->count() }} record(s) @endsection @section('pdf-content') @foreach($fields as $field) @endforeach @forelse($children as $index => $child) @foreach($fields as $field) @endforeach @empty @endforelse
#{{ ucfirst(str_replace('_', ' ', $field)) }}
{{ $index + 1 }} @if($field == 'cluster') {{ $child->cluster->cluster_name ?? 'N/A' }} @elseif($field == 'country') {{ $child->country->country ?? 'N/A' }} @elseif($field == 'age') {{ $child->dob ? \Carbon\Carbon::parse($child->dob)->age : 'N/A' }} @elseif($field == 'graduation_date') {{ $child->graduation_date ? \Carbon\Carbon::parse($child->graduation_date)->format('d-M-Y') : 'N/A' }} @elseif($field == 'school_name') {{ $child->latestUpdate->school->school_name ?? 'N/A' }} @elseif($field == 'class') {{ $child->latestUpdate->class ?? 'N/A' }} @else {{ $child->$field ?? 'N/A' }} @endif
No records found.
@endsection