@extends('adminlte::page') @section('title', 'Reporte de Cotizaciones vs Ventas') @section('content_header')
| Cotización | Cliente | Fecha | Monto Cotizado | Estado | Venta Generada | Monto Vendido | Diferencia | Acciones |
|---|---|---|---|---|---|---|---|---|
| {{ $item['cotizacion']->numero_cotizacion }} | {{ $item['cotizacion']->cliente->user->name ?? 'N/A' }} | {{ $item['cotizacion']->fecha_emision->format('d/m/Y') }} | S/ {{ number_format($item['monto_cotizado'], 2) }} | {{ ucfirst($item['cotizacion']->estado) }} | @if($item['tiene_venta']) Sí @else No @endif | @if($item['tiene_venta']) S/ {{ number_format($item['monto_vendido'], 2) }} @else - @endif | @if($item['tiene_venta']) S/ {{ number_format($item['diferencia'], 2) }} @else - @endif | @if($item['tiene_venta']) @endif |
| No hay cotizaciones que coincidan con los filtros seleccionados | ||||||||