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

Pagos del Mes

@foreach ($pagos as $his) @endforeach
Paciente Fecha de Realizacion Descripcion Tratamiento
{{ $his->nombre }} {{ $his->created_at }} {{ $his->descripcionTr }} {{ $his->tratamiento }}

Agenda de Hoy

    @foreach ($agendaHoy as $cita)
  • {{ $cita->hora }} - {{ $agenda->pacienterelation->nombre ?? $cita->paciente }} - {{ $cita->tratamiento }}
  • @endforeach

Agenda de Ma«Šana

    @foreach ($agendaManana as $cita)
  • {{ $cita->hora }} - {{ $agenda->pacienterelation->nombre ?? $cita->paciente }} - {{ $cita->tratamiento }}
  • @endforeach
@endsection