@extends('layouts.app') @section('title', 'View Inventory Item') @section('content')
{{ $item->item_name }}
{{ $item->item_code }}
{{ $item->category->category_name ?? 'N/A' }}
{{ $item->item_quantity }}
RS {{ number_format($item->item_purchase_price, 2) }}
RS {{ number_format($item->item_saleprice, 2) }}
{{ $item->minimum_stock }}
{{ $item->addedBy->user_name ?? 'Unknown User' }}
{{ $item->added_at }}