@extends('adminlte::page') @section('title', env('APP_NAME') . ' - Ver Ingreso') @section('content_header')

Detalles del Ingreso

@stop @section('content')

Información del Ingreso

MONTO S/. {{ number_format($ingreso->monto, 2) }}
CLIENTE {{ $ingreso->cliente->nombre_comercial ?? 'N/A' }}
FECHA DE REGISTRO {{ $ingreso->fecha_registro->format('d/m/Y H:i:s') }}
ESTADO @if($ingreso->estado) Activo @else Anulado @endif
Motivo: {{ $ingreso->motivo }}
Descripción: {{ $ingreso->descripcion ?? 'Sin descripción' }}
Es Excedente: @if($ingreso->es_excedente) @else No @endif

Información de Pago

Método de Pago: @if($ingreso->metodoPago) {{ $ingreso->metodoPago->descripcion }} @else N/A @endif
Entidad Bancaria: @if($ingreso->account) {{ $ingreso->account->name }} @elseif($ingreso->banco) {{ $ingreso->banco->nombre }} @else N/A @endif
Número de Operación: @if($ingreso->numero_operacion) {{ $ingreso->numero_operacion }} @else N/A @endif
Imagen: @if($ingreso->imagen) Ver Imagen @else N/A @endif

Información Adicional

ID del Ingreso: #{{ $ingreso->id }}
Creado: {{ $ingreso->created_at->format('d/m/Y H:i') }}
Actualizado: {{ $ingreso->updated_at->format('d/m/Y H:i') }}
@if($ingreso->caja)
@if($ingreso->caja->usuario) @endif
Caja Asociada: #{{ $ingreso->caja->id }}
Usuario Caja: {{ $ingreso->caja->usuario->email }}
@endif
@stop @section('css') @stop