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

Presupuesto De {{$paciente->nombre}}

@php $total = 0; @endphp @foreach ($presupuestos as $pres ) @php $total = $total + $pres->valor; @endphp @endforeach
PIEZA TRATAMIENTO FECHA ACTUALIZACION VALOR ACCION
{{$pres->pieza}} {{$pres->nombre}} {{$pres->descripcion}}, {{$pres->tipo}} {{$pres->fecha}}Q. {{number_format($pres->valor, 2)}}
@csrf @method('DELETE')
@csrf @method('PUT')

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

@endsection