@extends('layouts.dashboard.superadminapp') @section('title', 'Stock Items') @section('styles') @endsection @section('content')
{{ count($stockItems) }}
Total Stock Items
Inventory items
{{ count($categories) }}
Categories
Item groups
Stock Items Directory
@csrf
@foreach($stockItems as $item) @endforeach
Sl.No Item Name Category UOM SGST CGST IGST Actions
{{ $loop->iteration }} {{ $item->item_name }} {{ $item->category->name ?? 'N/A' }} {{ $item->uom ?? '-' }} {{ $item->sgst ?? '0' }}% {{ $item->cgst ?? '0' }}% {{ $item->igst ?? '0' }}%
@endsection @section('scripts') @endsection