@extends('layouts.yellow') @section('content')
| Código | Paciente | Total | Estado | Creado por | Fecha | Acciones |
|---|---|---|---|---|---|---|
| {{ $budget->code }} | {{ $budget->patient->firstname }} {{ $budget->patient->lastname }} | ${{ number_format($budget->total, 2) }} | @switch($budget->status) @case('draft') Borrador @break @case('sent') Enviado @break @case('approved') Aprobado @break @case('rejected') Rechazado @break @endswitch | {{ $budget->creator->name }} | {{ $budget->created_at->format('d/m/Y H:i') }} | |
No hay presupuestos disponiblesCrea un nuevo presupuesto haciendo clic en "Nuevo Presupuesto" |
||||||