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

doctor {{$doctore->nombre}}

@foreach ($historial as $his) @endforeach
PACIENTE FECHA DE REALIZACION TRATAMIENTO TIPO
{{$his->nombre}} {{$his->created_at}} {{$his->tratamiento}} {{$his->descripcionTr}} {{$his->tipo}}

Descuentos

@php $deuda = 0; @endphp @foreach ($descuentos as $d) @php $deuda += $d->valor; @endphp @endforeach
DESCRIPCION VALOR FECHA
{{$d->descripcion}} Q. {{number_format($d->valor, 2)}} {{$d->created_at}}

Total Ganancia de Tratamientos: Q. {{number_format($total_Pago, 2)}}

Total Descuento: Q. {{number_format($deuda, 2)}}

Total A Cancelar: Q. {{number_format($total_Pago - $deuda, 2)}}

@endsection