@extends('layouts.admin')
@section('title')INGRESO @stop
@section('titulo')NOTAS DE INGRESO @stop
@section('menu-ingreso')active open @stop
{{--@section('libros-opcion')active @stop--}}
@section('acciones')
Nuevo Ingreso
@stop
@section('descripcion')
- Inicio
- Almacen
- Notas de Ingreso
@stop
@section('content')
{{--FECHA REGISTRO | --}}
FECHA |
NUMERO |
PROCEDENCIA |
CONCEPTO |
{{--RECIBE | --}}
ESTADO |
ACCIONES |
@foreach($datos as $f=>$r)
| {{$r->fecha->format('d/m/Y')}} |
{{$r->id}} |
{{-- {{$r->created_at->format('d/m/Y H:i:s')}} | --}}
{{$r->envia}} |
{{-- {{$r->recibe}} | --}}
{{$r->concepto}} |
{{$r->estado}} |
@if($r->estado=='CREADO')
@endif
@if($r->estado=='PROCESADO')
@endif
|
@endforeach
@section('scripts')
@stop
@endsection