@extends('layouts.admin-simple') @section('title', 'Items') {{-- Force cache refresh --}} @section('breadcrumb') @endsection @section('page-title')

Items

Manage inventory items and their details

@can('warehouse.items.create')
@endcan
@endsection @section('content')
filter_list Filters
@php $categories = \App\Models\Warehouse\ItemCategory::where('status', 'active')->get(); $categoryOptions = [['value' => '', 'text' => 'All Categories']]; foreach($categories as $category) { $categoryOptions[] = ['value' => $category->id, 'text' => $category->category_name]; } @endphp
inventory_2 Items List
Item Info Category Unit Status Created Date Actions
@endsection @section('modals') @endsection @push('styles') @endpush @push('scripts') @endpush