@extends('layouts.admin') @section('title', 'Items') @section('page-title', 'Items & Services') @section('content')
Manage products with stock and billable services
| Item | Type | HSN / SAC | Unit | Sale | Purchase | Tax | Stock | Action |
|---|---|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($item->name, 0, 1)) }}
{{ $item->name }}
@if($item->sku)
SKU: {{ $item->sku }}
@endif
|
{{ $item->type }} | {{ $item->hsn_sac ?? '—' }} |
{{ $item->unit }} | {{ $item->sale_currency ?? 'INR' }} {{ number_format($item->sale_rate, 2) }} | {{ $item->purchase_currency ?? 'INR' }} {{ number_format($item->purchase_rate, 2) }} | {{ $item->taxRate?->name ?? '—' }} | @if($item->type === 'product') {{ number_format($item->stock_qty, 3) }} @else — @endif | |