@extends('layouts.app') @section('content') @extends('contabilidad.menu')
@csrf

Factura

- Referencia Pedido:

@foreach ($facturas as $cotizacion)

{{ $cotizacion['no_cotizacion'] }}/

@endforeach

{{ $cliente->nombre }}

{{ $cliente->direccion }}

@foreach ($facturas as $cotiza) {{ $cotiza['comentario_coti'] }} @endforeach

@if ($cliente->condiciones_pago == 1)

Contado

@endif @if ($cliente->condiciones_pago == 6)

8 días

@endif @if ($cliente->condiciones_pago == 2)

15 días

@endif @if ($cliente->condiciones_pago == 3)

30 días

@endif @if ($cliente->condiciones_pago == 4)

45 días

@endif @if ($cliente->condiciones_pago == 5)

60 días

@endif
@if ($cliente->tipo_regimen == 1)

Régimen Normal

@endif @if ($cliente->tipo_regimen == 2)

Decreto régimen 2989

@endif
@foreach ($facturas as $factura) @endforeach
Descripción de Producto Cantidad Unidad de medida Precio unitario Impuestos Cotización Total

{{ $factura['nombre'] }}

{{ $factura['cantidad'] }}

{{ $factura['medida'] }}

{{ number_format($factura['precio'], 4, '.', ',') }}

{{ number_format($factura['iva'], 2, '.', ',') }}

CO_{{ $factura['id_co'] }}

{{ number_format($factura['total'], 2, '.', ',') }}


Impuestos: Q {{ number_format($iva_t, 2, '.', ',') }}

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

@endsection