@extends('layouts.dental') @section('title', 'Pacientes') @section('content')
| Nome | Idade | CPF | Celular | Ações |
|---|---|---|---|---|
{{ strtoupper(substr($patient->name,0,1)) }} {{ $patient->name }} |
{{ $patient->age ? $patient->age.' anos' : '—' }} | {{ $patient->cpf_formatted ?? '—' }} | {{ $patient->phone ? '+55 '.$patient->phone : '—' }} | |
| {{ request('q') ? 'Nenhum paciente encontrado para "'.request('q').'"' : 'Nenhum paciente cadastrado.' }} | ||||