@extends('layouts.doctor') @section('styles') @endsection @section('content')

Dashboard Doctor

PAGO ACUMULADO DEL MES
Q. {{number_format($total_pago, 2)}}
{{-- FILA 1: LISTAS RÁPIDAS (Hoy y Mañana) --}}
Agenda de Hoy
    @forelse ($agendaHoy as $cita)
  • {{ $cita->hora }} {{ $cita->pacienterelation->nombre ?? $cita->paciente }}
    {{ $cita->tratamiento }}
  • @empty
  • Sin citas hoy.
  • @endforelse
Agenda de Mañana
    @forelse ($agendaManana as $cita)
  • {{ $cita->hora }} {{ $cita->pacienterelation->nombre ?? $cita->paciente }}
    {{ $cita->tratamiento }}
  • @empty
  • Sin citas mañana.
  • @endforelse
{{-- FILA 2: CALENDARIO MENSUAL COMPLETO --}}
Calendario General
{{-- CARD 1: PACIENTES DE HOY --}}

Pacientes de Hoy

Gestionar asistencias del día

{{-- CARD 2: REPORTES --}}

Reportes

Ver ingresos y estadísticas

{{-- MODAL PAGOS (Tu código original) --}} {{-- MODAL DETALLE CITA (Solo Lectura) --}} @endsection @section('scripts') @endsection