Dentistry reports

Procedures, revenue, unfinished plans, and imaging volume.

← Specialty home

Unfinished plan items

{{ number_format($report['unfinished_items']) }}

Avg chair time (month)

{{ $report['avg_chair_minutes'] !== null ? $report['avg_chair_minutes'].' min' : '—' }}

Imaging studies (month)

{{ number_format($report['imaging_by_modality']->sum('total')) }}

Procedures today

    @forelse ($report['procedures_today'] as $row)
  • {{ $row->label }} × {{ $row->total }} {{ $currency }} {{ number_format($row->amount_minor / 100, 2) }}
  • @empty
  • No procedures today.
  • @endforelse

Procedures this month

    @forelse ($report['procedures_month'] as $row)
  • {{ $row->label }} × {{ $row->total }} {{ $currency }} {{ number_format($row->amount_minor / 100, 2) }}
  • @empty
  • No procedures this month.
  • @endforelse

Revenue by procedure (range)

    @forelse ($report['revenue_by_code'] as $row)
  • {{ $row->description }} × {{ $row->total }} {{ $currency }} {{ number_format($row->amount_minor / 100, 2) }}
  • @empty
  • No dental procedure revenue in this range.
  • @endforelse

Imaging by modality

    @forelse ($report['imaging_by_modality'] as $row)
  • {{ $modalities[$row->modality] ?? $row->modality }} {{ $row->total }}
  • @empty
  • No imaging this month.
  • @endforelse