@foreach ($report['dates'] as $date)

{{ $date['date_text'] }}

@foreach ($date['localities'] as $locality)

{{ $locality['code'] . '-' . $locality['description'] }}

@foreach ($locality['cash_boxes'] as $cash_box) @foreach ($cash_box['cashiers'] as $cashier) @foreach ($cashier['payment_ways_totals'] as $key => $payment_ways) @if ($key != 'total') @endif @endforeach @endforeach @endforeach

Cajero

Caja

Ubicación

Metodo de pago

Total

{{ $cashier['employee_name'] }} {{ $cash_box['code'] . '-' . $cash_box['description'] }} {{ $cash_box['location_code'] . '-' . $cash_box['location_description'] }} ${{ number_format($cashier['payment_ways_totals']['total'], 2) }}
{{ $payment_ways['code'] . '-' . $payment_ways['description'] }} ${{ number_format($payment_ways['total'], 2) }}
@endforeach
@foreach ($date['payment_ways_totals'] as $key => $payment_ways) @if ($key != 'total') @endif @endforeach
Total Fecha {{ $date['date_text'] }}: ${{ number_format($date['payment_ways_totals']['total'], 2) }}

Método De pago

Importe

{{ $payment_ways['code'] . '-' . $payment_ways['description'] }} ${{ number_format($payment_ways['total'], 2) }}
@endforeach

Totales del periodo de tiempo {{ $report['start_date'].' - '.$report['end_date'] }}

@foreach ($report['payment_ways_totals'] as $key => $payment_ways) @if ($key != 'total') @endif @endforeach
Total del periodo de tiempo ${{ number_format($report['payment_ways_totals']['total'], 2) }}

Método De pago

Importe

{{ $payment_ways['code'] . '-' . $payment_ways['description'] }} ${{ number_format($payment_ways['total'], 2) }}