@extends('layouts.app') @section('title', 'Sick Leave Certificate | ' . ($sl->patient->full_name ?? '')) @section('content')
@if(session('success'))
{{ session('success') }}
@endif
โ† Back to {{ $sl->patient->full_name }}

Sick Leave Certificate

For {{ $sl->patient->full_name }} ยท MRN {{ $sl->patient->mrn }}

Issued To
@if($sl->isForGuardian()) Guardian {{ $sl->guardian_name }}{{ $sl->guardian_relationship ? ' (' . $sl->guardian_relationship . ')' : '' }} โ€” for care of {{ $sl->patient->full_name }} @else Patient {{ $sl->patient->full_name }} @endif
Treatment Date
{{ $sl->treatment_date?->format('d M Y') }}
Days Off
{{ $sl->days }} {{ $sl->days == 1 ? 'day' : 'days' }} (through {{ optional($sl->end_date)->format('d M Y') }})
Sign-off Clinician
{{ $sl->sign_off_name }}
Issued By
{{ optional($sl->issuer)->name ?? 'โ€”' }}
Issued At
{{ $sl->issued_at?->format('d M Y H:i') }}
@if($sl->notes)
Internal Notes
{{ $sl->notes }}
@endif
@endsection