{{ $from_date }} - {{ $to_date }}
@foreach($details_data as $detail_data)
@foreach($detail_data['details'] as $detail) @endforeach

{{ 'CUENTA ' . $detail_data['accounting_account'] }}

RECIBO CONCEPTO IMPORTE
{{ $detail['cash_box_payment_invoice'] }} {{ $detail['concept_code_description'] }} {{ '$' . number_format($detail['subtotal'], 2) }}
TOTAL {{ '$' . number_format($detail_data['grand_subtotal'], 2) }}
@endforeach @foreach($tax_details_data as $tax_detail_data)
@foreach($tax_detail_data['details'] as $detail) @endforeach

{{ 'CUENTA ' . $tax_detail_data['tax_description'] }}

RECIBO CONCEPTO IMPORTE
{{ $detail['cash_box_payment_invoice'] }} {{ $detail['concept_code_description'] }} {{ '$' . number_format($detail['amount'], 2) }}
TOTAL {{ '$' . number_format($tax_detail_data['grand_amount'], 2) }}
@endforeach