@extends('layouts.app') @section('content')
| Cliente: | {{ $quotation->client->business_name }} |
| Documento: | {{ $quotation->client->document_type }}: {{ $quotation->client->document_number }} |
| Email: | {{ $quotation->client->email }} |
| Teléfono: | {{ $quotation->client->phone }} |
| Número: | {{ $quotation->quotation_number }} |
| Fecha: | {{ $quotation->quotation_date->format('d/m/Y') }} |
| Válido hasta: | {{ $quotation->valid_until->format('d/m/Y') }} |
| Estado: | {{ $quotation->status_text }} |
| Vendedor: | {{ $quotation->salesman->name ?? 'N/A' }} |
| Producto | Cantidad | Precio Unitario | Descuento % | Subtotal |
|---|---|---|---|---|
| {{ $detail->product->name }} | {{ number_format($detail->quantity, 2) }} | {{ number_format($detail->unit_price, 2) }} | {{ number_format($detail->discount_percentage, 2) }}% | {{ number_format($detail->subtotal, 2) }} |
| Subtotal: | {{ number_format($quotation->subtotal, 2) }} | |||
| Descuento: | {{ number_format($quotation->discount_amount, 2) }} | |||
| Impuestos: | {{ number_format($quotation->tax_amount, 2) }} | |||
| Total: | {{ number_format($quotation->total_amount, 2) }} | |||
{{ $quotation->notes }}