Numero
{{$transaction->ref_no}}
Proveedor
{{$transaction->contact->contact_id}} - {{$transaction->contact->name}}
Total Fuente
@if($transaction->type == 'purchase')
{{ number_format($transaction->total_before_tax-$totalIva,2,'.','')}}
@else
{{ number_format($transaction->total_before_tax,2,'.','')}}
@endif
Total Iva
@if($transaction->type == 'purchase')
{{ number_format($totalIva,2,'.','')}}
@else
{{ number_format($transaction->tax_amount,2,'.','') }}
@endif
Total General
{{ number_format($transaction->final_total,2,'.','') }}
@component('components.widget', ['class' => 'box-primary', 'title' => 'Aplicar Retencion sobre la Fuente'])
@endcomponent
@component('components.widget', ['class' => 'box-primary', 'title' => 'Aplicar Retencion sobre el iva'])
@endcomponent
| Descripción |
Porcentaje |
Monto |
Retención |
Acciones |
Total Retenido: $0.00
@php
//dd($transaction)
@endphp