Lista Cotizaciones

@if (session()->has('success'))
{{ session('success') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif
Buscar por ventas
Estado reembolsos
@foreach ($cotizaciones as $item) @endforeach
# Orden Usuario Fecha Ingreso RUT Nombre Completo Correo Estado Total Acciones
{{$item->id}} {{ $item->usuario->name ?? '—' }} {{$item->created_at}} {{ $item->rut ?? '—' }} {{ $item->nombre ?? '—' }} {{ $item->correo ?? '—' }} {{ $item->status ?? '—' }} {{ Currency::currency("CLP")->format($item->extra->total_pago ?? 0) }} @if ($item->status != "CONFIRMADO") @endif @if ($item->status == "PENDIENTE" || $item->status == "MODIFICADO") Modificar @endif
{{-- --}}
@push('scripts') @endpush