@extends('layouts.app') @section('title', 'Inventory') @section('content')
| Code | Item | Category | In Hand | Reorder | Unit Cost | Status |
|---|---|---|---|---|---|---|
| {{ $i->code }} | {{ $i->name }} | {{ $i->category }} | {{ $i->quantity_in_hand }} | {{ $i->reorder_level }} | KES {{ number_format($i->unit_cost) }} | @if($i->quantity_in_hand <= $i->reorder_level)Low@elseOK@endif |