@extends('layouts/contentLayoutMaster') @section('title', 'Management Inventories') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
@include('content.partial.form-message')

Inventories List

input("search")) }}"/>
Reset
@can('Business - Inventories - Add') Add New Inventory @endcan Export Excel

@if($inventories->total()) Records {{ ( $inventories->currentPage() - 1 ) * $inventories->perPage() + 1 }} to {{ ( $inventories->currentPage() - 1 ) * $inventories->perPage() + $inventories->count() }} from {{ $inventories->total() }} Records @else No Record @endif

@foreach( $inventories as $inventory ) @endforeach
ID Part Number Description Fleet Action
{{ $inventory->id }} @can('Business - Inventories - List') @endcan {{ $inventory->part_number }} @can('Business - Inventories - List') @endcan {{ $inventory->description }} {{ $inventory->fleet }}
{{ $inventories->appends($_REQUEST)->fragment('top-list')->links('vendor.pagination.bootstrap-5') }}
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') @endsection