@extends('layouts.app') @section('title', 'Completed Dental Patients') @section('content')
No completed dental encounters found for the selected period.
| # | Patient | Visit | Diagnosis | Encounter Summary | Completed | Actions |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $patient->first_name }}
{{ $patient->last_name }}
{{ $patient->patient_no }}
•
{{ $patient->gender }}
|
{{ $patient->visit_no }}
{{ ucfirst($patient->visit_type) }}
|
{{ $patient->provisional_diagnosis ?? 'N/A' }}
|
{{ $patient->summary ?? 'No summary available' }}
|
{{ \Carbon\Carbon::parse(
$patient->completed_at
)->format('d M Y') }}
{{ \Carbon\Carbon::parse(
$patient->completed_at
)->format('H:i A') }}
{{ \Carbon\Carbon::parse(
$patient->completed_at
)->diffForHumans() }}
|
Review |