@extends('layouts.app') @section('title', 'Dental Encounter') @section('content')
{{-- HEADER --}}

Dental Encounter

{{ $patient->first_name }} {{ $patient->last_name }} • {{ $patient->patient_no }}

Back To Queue
{{-- SUMMARY --}}
{{-- PATIENT --}}
Patient Information
Patient No {{ $patient->patient_no }}
Name {{ $patient->first_name }} {{ $patient->last_name }}
Gender {{ $patient->gender }}
Visit No {{ $patient->visit_no }}
Visit Type {{ ucfirst($patient->visit_type) }}
{{-- TRIAGE --}}
Triage Summary
@php $triage = strtolower( $patient->triage_category ?? 'green' ); @endphp
Temperature {{ $patient->temperature ?? '-' }} °C
Pulse {{ $patient->pulse_rate ?? '-' }}
SPO₂ {{ $patient->spo2 ?? '-' }}%
Triage {{ strtoupper($triage) }}
{{-- CLINICAL --}}
Clinical Summary
Provisional Diagnosis
{{ $patient->provisional_diagnosis ?? 'N/A' }}
Clinical Impression
{{ $patient->clinical_impression ?? 'N/A' }}
{{-- FORM --}}
Dental Procedure Form
@csrf {{-- ROW 1 --}}
{{-- ROW 2 --}}
{{-- PROCEDURES --}}
@foreach($dentalProcedures as $procedure) @endforeach
{{-- ROW 3 --}}
{{-- ROW 4 --}}
{{-- MEDICATIONS --}}
@foreach($dentalMedicines as $medication) @endforeach
{{-- THERAPEUTIC PLAN --}}
@foreach($therapeuticOptions as $option) @endforeach
{{-- FOLLOW UP / REFERRAL --}}
{{-- NOTES --}}
{{-- ACTIONS --}}
@endsection