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

Recibo de Caja {{$recibo_caja->id}}

{{$recibo_caja->cliente->nombre}}

{{ $recibo_caja->cliente->direccion }}

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

Contado

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

8 días

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

15 días

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

30 días

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

45 días

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

60 días

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

Ninguno

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

Decreto régimen 2989

@endif

{{ $recibo_caja->recibo_caja_numero }}

@foreach ($recibo_caja->facturas as $factura) @endforeach
RC Factura Total Factura Cheque No Efectivo Total

{{$factura->ver_recibo->recibo_caja_numero}}

{{$factura->id_factura_sat}}

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

{{$factura->numero_cheque??0}}

{{number_format($factura->efectivo??0,2,'.',',')}}

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


TOTAL: Q {{number_format($recibo_caja->id_total,2,'.',',')}}

@endsection