@extends('adminlte::page') @section('plugins.Datatables', true) @section('title', env('APP_NAME') . ' - Lista de Ingresos') @section('content_header')

Lista de Ingresos

@stop @section('content')
Nuevo Ingreso
@if (session('success'))
{{ session('success') }}
@endif
@foreach ($ingresos as $ingreso) @endforeach
# Fecha Cliente Monto Motivo Estado Acciones
{{ $ingreso->id }} {{ $ingreso->fecha_registro->format('d/m/Y') }} {{ $ingreso->cliente->nombre_comercial }} S/. {{ number_format($ingreso->monto, 2) }} {{ $ingreso->motivo }} {{ $ingreso->estado ? 'Activo' : 'Anulado' }}
@stop @section('css') @stop @section('js') @stop