@extends('layouts.app') @section('title', 'Inventory') @section('content')
Low Stock: {{ $lowStock }}
+ Add Item
@foreach($items as $i)@endforeach
CodeItemCategoryIn HandReorderUnit CostStatus
{{ $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
{{ $items->links() }}
@endsection