@extends('layouts.clinic')
@section('title', $patient->name.' — '.config('app.name'))
@section('content')
{{ $patient->name }}
{{ $patient->code }} · {{ $patient->phone ?? '—' }}
{{-- Timeline --}}
{{-- Clinical profile --}}
{{-- Clinical note --}}
ملخص زيارة
{{-- Attachments --}}
المرفقات الطبية
@forelse($patient->medicalAttachments as $att)
-
{{ $att->original_name }} ({{ \App\Models\Clinic\MedicalAttachment::categoryLabels()[$att->category] ?? $att->category }})
@if($att->isImage())
معاينة
@endif
تحميل
@empty
- لا مرفقات.
@endforelse
@endsection
@push('scripts')
@endpush