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

Recibo de Caja

{{$recibo->cliente->nombre}}

{{ $recibo->cliente->direccion }}

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

Contado

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

8 días

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

15 días

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

30 días

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

45 días

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

60 días

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

Ninguno

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

Decreto régimen 2989

@endif
@foreach ($recibo->facturas as $factura) @if ($factura->id_factura) @if ($factura->ver_factura->no_sat??false) @else @endif @endif @endforeach
ID Factura Saldo Cheque No / Retención Cheque Q Efectivo Valor Retención Total

{{$factura->id}}

{{$factura->ver_factura->no_sat??''}} - ver_factura->archivo_factura??'') }}" target='_blank'>

{{$factura->ver_factura->no_sat??''}} -

{{number_format($factura->abono,2,'.',',')}}


TOTAL: Q

@endsection