Reporte Efectivo - Punto de Venta

@if(!$data['cash_state']) @endif

Empresa: {{$data['company_name']}}

Fecha reporte: {{date('Y-m-d')}}

Ruc: {{$data['company_number']}}

Establecimiento: {{$data['establishment_address']}} - {{$data['establishment_department_description']}} - {{$data['establishment_district_description']}}

Vendedor: {{$data['cash_user_name']}}

Fecha y hora apertura: {{$data['cash_date_opening']}} {{$data['cash_time_opening']}}

Estado de caja: {{($data['cash_state']) ? 'Aperturada':'Cerrada'}}

Fecha y hora cierre: {{$data['cash_date_closed']}} {{$data['cash_time_closed']}}

Montos de operación:

Saldo inicial efectivo:  S/ {{$data['cash_beginning_balance']}}

Ingreso efectivo:  S/ {{ $totalIngresoEfectivo }}

Saldo final efectivo:  S/ {{ $data['cash_beginning_balance'] + $totalIngresoEfectivo - $data['cash_egress'] }}

Egreso efectivo:  S/ {{$data['cash_egress']}}

   
@if($data['cash_documents_total']>0)
@foreach($data['all_documents'] as $key => $value) @endforeach
# Tipo transacción Detalle de ingresos/gastos Tipo documento Documento Fecha emisión Cliente/Proveedor N° Documento Moneda T.Pagado Total
{{ $loop->iteration }}{{--
{!! $value['usado'] !!}
{{$value['tipo']}} --}}
{{ $value['type_transaction'] }} {!! $value['document_items_description'] ?? '' !!} {{ $value['document_type_description'] }} {{ $value['number'] }} {{ $value['date_of_issue'] }} {{ $value['customer_name'] }} {{ $value['customer_number'] }} {{ $value['currency_type_id'] }} {{ $value['total_payments'] }} {{ $value['total_string'] }}
@else

No se encontraron registros.

@endif