@extends('layouts.app')
@section('title', 'Downloads')
@section('content')
Download Results & Receipts
@forelse($children ?? [] as $child)
{{ $child->full_name }}
Report Cards
@forelse($child->documents->where('document_type_id', $child->documents->first()->document_type_id ?? null) as $doc)
{{ $doc->reference_code }}
@empty
None yet
@endforelse
Receipts
@forelse($child->invoices as $invoice)
@foreach($invoice->payments as $payment)
{{ $payment->receipt_number }}
@endforeach
@empty
None yet
@endforelse
@empty
No children linked to this account.
@endforelse
@endsection