@extends('adminlte::page')
@section('plugins.Datatables', true)
@section('plugins.Sweetalert2', true)
@section('title', 'Intranet | Inventario De Articulos')
@section('content_header')
@stop
@section('content')
Total De Articulos
{{ $cantidadTotalDeArticulos }}
Total De Entradas
{{ $cantidadTotalDeEntradas }}
Total De Salidas
{{ $cantidadTotalDeSalidas }}
@if ($bodega->tipo == 'Transito')
| Acción |
Código Artículo |
Nombre Artículo |
Tipo |
Marca |
Modelo |
Talla |
Rq |
Oc |
Cc |
Entrada |
Salida |
Pendientes |
@endif
@if ($bodega->tipo == 'Stock')
Acción |
Código Artículo |
Nombre Artículo |
Tipo |
Marca |
Modelo |
Talla |
Stock Critico |
Stock Inventario |
@endif
@stop
@section('footer')
Intranet
Copyright © 2023 aspenspa.cl
@stop
@section('css')
@stop
@section('js')
@if ($bodega->tipo == 'Transito')
@if (Gate::check('salida-bodega.create'))
@endif
@if (Gate::check('salida-bodega.create'))
@else
@endif
@endif
@if ($bodega->tipo == 'Stock')
@if (Gate::check('salida-bodega.create'))
@endif
@if (Gate::check('bodega.traspaso-bodega-transito'))
@endif
@if (Gate::check('bodega.traspaso-bodega-stock'))
@endif
@if (Gate::check('bodega.stock-critico'))
@endif
@if (Gate::check('salida-bodega.create') || Gate::check('bodega.traspaso-bodega-transito'))
@else
@endif
@endif
@stop