@extends('layouts.master') @section('content')

Item Master

Manage medicines, vaccines, consumables and equipment

📦 Import Catalogue + New Item
📦
Total Items
{{ number_format($totalItems) }}
💰
Stock Value
{{ number_format($stockValue, 0) }}
📗
Items In Stock
{{ number_format($stockItems) }}
⚠️
Low Stock
{{ number_format($lowStock) }}

Item Catalogue

Showing 2 Items
@forelse($items as $item) @empty @endforelse
Code Item Name Category Unit Tracking Status Actions
{{ $item->item_code }} {{ $item->item_name }} {{ $item->category }} {{ $item->base_unit }} @php $tracking = []; if ($item->track_batch) { $tracking[] = 'Batch'; } if ($item->track_expiry) { $tracking[] = 'Expiry'; } if ($item->track_serial) { $tracking[] = 'Serial'; } @endphp {{ implode(' + ', $tracking) ?: 'None' }} @if($item->status == 'Active') Active @else {{ $item->status }} @endif View Edit
No items found.
@endsection