@extends('layouts.admin-simple') @section('title', 'Indirect Goods Catalog') @section('breadcrumb') @endsection @section('page-title')

Indirect Goods Catalog

Manage indirect goods items and their details

@can('warehouse.indirect-goods.create')
file_download Export
@endcan
@endsection @section('content')
filter_list Filters
@php $categories = \App\Models\Warehouse\ItemCategory::where('status', 'active')->orderBy('category_name')->get(); $categoryOptions = [['value' => '', 'text' => 'All Categories']]; foreach($categories as $category) { $categoryOptions[] = ['value' => $category->id, 'text' => $category->category_name]; } @endphp
category Indirect Goods List
# IG Code Description Category Unit Stock Qty Avg Price Status Actions
@endsection @section('modals') @endsection @push('styles') @endpush @push('scripts') @endpush