@extends('layouts.app') @section('content')

{{config('app.name', 'LIBRERIA ELY') }}
Articulos Registrados con Poca Existencia

@foreach($articulos as $art) @if ($art->stock < $art->min_stock) @endif @endforeach
Nombre Descripcion Categoria Precio Venta Precio Costo Stock Stock_Maximo Fabricante Proveedor Sub-estante
{{$art->nombre}} {{$art->nomCat}} Q.{{number_format($art->p_venta, 2)}} Q.{{number_format($art->p_costo, 2)}} {{$art->stock}} {{$art->stock_maximo}} {{$art->fabricante}} {{$art->proveedor->nombre}}, {{$art->proveedor->nombre}} {{$art->ubicacion}}

Total de Articulos: {{$total}}

@endsection