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

Lista de Ingresos

@stop @section('content') {{-- Nuevo Ingreso --}}

Ingresos

@foreach ($ingresos as $ingreso) @endforeach
# Usuario Fecha Registro Monto Motivo Acciones
{{ $ingreso->id }} {{ $ingreso->user->name }} {{ $ingreso->fecha_registro }} {{ $ingreso->monto }} {{ $ingreso->motivo }}
@stop @section('js') @stop