@extends('admin.layouts.default') @section('header_styles') @stop @section('content')

@yield('title', 'Products Inventory Listings')

@if(session()->has('message'))
{{ session()->get('message') }}
@endif
@foreach($inventories as $i=>$inventory) @endforeach
# @sortablelink('Product') @sortablelink('User') Stock
{{ $i+1 }} {{ $inventory->products_name }} {{ ucfirst(auth()->user()->first_name) }} {{ ucfirst(auth()->user()->last_name) }} {{ $inventory->stock }} View Edit
@csrf @method('DELETE')
{!! $inventories->appends(\Request::except('page'))->render() !!}
@stop @section('footer_scripts') @stop