@extends('layouts.admin') @section('title', 'Items') @section('page-title', 'Items & Services') @section('content')

Items & Services

Manage products with stock and billable services

New Item
@include('partials.admin.list-toolbar', ['searchId' => 'items-search', 'placeholder' => 'Search by name, SKU, HSN...'])
@forelse($items as $item) @empty @endforelse
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
@csrf @method('DELETE')
No items yet

Create your first product or service to use on invoices and bills.

Add New Item
@endsection @push('scripts') @endpush