@extends('admin.layout') @push('css') @endpush @section('content')

{{ __('HOLA, ') }} {{ strtok($user->name, ' ') }}
{{ __('Reporte de la cuenta') }}

{{ $cuenta->nombre }}:
{{ $cuenta->balance }}
0000 0000 0000 0000
Fecha
creac
{{ $cuenta->created_at->format('m/Y') }}
SISTEMA ALFA
@if ($ultimo_cierre)
@endif
@if ($cuenta->ingresos) @if (count($cuenta->ingresos) > 0) @foreach ($cuenta->ingresos as $ingreso) @endforeach @else @endif @else @endif @if ($cuenta->salidas) @if (count($cuenta->salidas) > 0) @foreach ($cuenta->salidas as $salida) @endforeach @else @endif @else @endif
{{ __('TIPO') }} {{ __('COMPROBANTE') }} {{ __('NRO') }} {{ __('MOTIVO') }} {{ __('DESCRIPCIÓN') }} {{ __('MONTO') }} {{ __('ACCIÓN') }}
SALDO ANTERIOR @if ($ultimo_cierre) {{ $ultimo_cierre->monto }} @else 0 @endif
ingreso @if ($ingreso->tipocomprobante) {{ $ingreso->tipocomprobante->nombre }} @else - @endif @if ($ingreso->comprobante_correlativo) {{ $ingreso->comprobante_correlativo }} @else - @endif @if ($ingreso->motivo) {{ $ingreso->motivo->nombre }} @else - @endif @if ($ingreso->descripcion) {{ $ingreso->descripcion }} @else - @endif {{ $ingreso->monto }}
{{ __('No hay ingresos') }}
{{ __('No hay ingresos') }}
salida @if ($salida->tipocomprobante) {{ $salida->tipocomprobante->nombre }} @else - @endif @if ($salida->comprobante_correlativo) {{ $salida->comprobante_correlativo }} @else - @endif @if ($salida->motivo) {{ $salida->motivo->nombre }} @else - @endif @if ($salida->descripcion) {{ $salida->descripcion }} @else - @endif {{ $salida->monto }} @if ($salida->reposicioncaja) @endif
{{ __('No hay salidas') }}
{{ __('No hay salidas') }}
TOTAL {{ $cuenta->balance }}

@if ($cuenta->salidas) @if (count($cuenta->salidas) > 0) @foreach ($cuenta->salidas as $salida) @if ($salida->reposicioncaja) @include('tesoreria.cuentas.reportes.modal.detalle', ['id' => $salida->reposicioncaja->id]) @endif @endforeach @endif @endif @stop @section('js') @stop