@extends('layouts.doctor')
@section('content')
Paciente |
Fecha de Realizacion |
Descripcion |
Tratamiento |
@foreach ($pagos as $his)
{{ $his->nombre }} |
{{ $his->created_at }} |
{{ $his->descripcionTr }} |
{{ $his->tratamiento }} |
@endforeach
@foreach ($agendaHoy as $cita)
-
{{ $cita->hora }} - {{ $agenda->pacienterelation->nombre ?? $cita->paciente }} - {{ $cita->tratamiento }}
@endforeach
@foreach ($agendaManana as $cita)
-
{{ $cita->hora }} - {{ $agenda->pacienterelation->nombre ?? $cita->paciente }} - {{ $cita->tratamiento }}
@endforeach
@endsection