@extends('Admin.layout') @section('content') {{-- Header --}}
Details
{{-- Patient identity strip --}}
{{ strtoupper(substr($patient->patient_name, 0, 1)) }}
{{ $patient->patient_name }}
Patient ID ยท {{ $patient->sheet_no }}
{{-- Step navigation --}}
{{-- Form panel --}}
Additional Information
{{-- Additional information history โ€” collapsible accordion --}}
@forelse ($additionalInfoHistory as $entry)
{{ $entry->created_at->format('d M Y') }} {{ $entry->created_at->format('h:i A') }}

{{ $entry->info }}

@empty
No additional information history found.
@endforelse
@csrf
{{-- Sticky bottom action bar --}}
@endsection