@extends('layouts.app') @section('title', __('Dental chart').' — '.$patient->full_name) @section('content')

🦷 {{ $patient->full_name }}

FDI 11–48
@include('patients._tabs') @if($patient->allergies)
⚠ {{ __('Allergies') }}: {{ $patient->allergies }}
@endif
{{-- ===== Chart ===== --}}
@foreach($conditions as $key => $c) {{ __($c['label']) }} @endforeach {{ __('Planned') }}

{{ __('Upper arch') }}


{{ __('Lower arch') }}

{{ __("Tap any tooth to view its history and record findings. The patient's right side appears on the screen's left, as in clinical charts.") }}

{{-- ===== Tooth panel ===== --}}
🦷
{{ __('Select a tooth to begin.') }}

{{ __('Tooth') }}

@can('chart.manage')
{{-- cross: B / M O D / L --}}
@foreach(['existing' => __('Existing'), 'planned' => __('Planned'), 'completed' => __('Completed')] as $val => $label) @endforeach

@endcan

{{ __('Tooth history') }}

@push('page-scripts') @endpush @endsection