Dashboard {{-- Cards de resumo --}}
Consultas Hoje 📅

{{ $todayAppointments }}

agendadas para hoje

Pacientes 👥

{{ $totalPatients }}

cadastrados no sistema

Entradas Hoje 💰

R$ {{ number_format($todayIncome, 2, ',', '.') }}

recebido hoje

Confirmados ✅

{{ $confirmedAppointments }}

confirmados para hoje

{{-- Próximas consultas --}}

Próximas Consultas

Ver agenda →
@forelse($nextAppointments as $apt)
{{ substr($apt->patient->name, 0, 1) }}

{{ $apt->patient->name }}

{{ $apt->starts_at->format('H:i') }} — {{ $apt->professional->name }}

{{ ucfirst($apt->status) }}
@empty
Nenhuma consulta hoje
@endforelse
{{-- Últimos pacientes --}}

Últimos Pacientes

Ver todos →
@forelse($recentPatients as $patient)
{{ substr($patient->name, 0, 1) }}

{{ $patient->name }}

{{ $patient->phone ?? 'Sem telefone' }}

Ver
@empty
Nenhum paciente cadastrado
@endforelse