@extends('layouts.app') @section('content')
| Code | Item Name | Type | Unit | Purchase Price | Sale Price | Stock | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $item->code }} | {{ $item->name }} | {{ $types[$item->type] ?? strtoupper($item->type) }} | {{ $item->unit }} | Rs. {{ number_format($item->purchase_price, 2) }} | Rs. {{ number_format($item->sale_price, 2) }} | {{ number_format($item->current_stock, 2) }} {{ $item->unit }} @if($item->current_stock <= $item->minimum_stock && $item->minimum_stock > 0) @endif | @if($item->is_active) Active @else Inactive @endif | |
|
No items found. Create your first item |
||||||||