@extends('layouts.dashboard.superadminapp') @section('title', 'View Sales Order') @section('styles') @endsection @section('content')
| # | Material Code | HSN Code | Description | Qty | UOM | Unit Rate | Disc % | Value | SGST % | CGST % | IGST % | Amount |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->material_code ?? '-' }} | {{ $item->hsn_code ?? '-' }} | {{ $item->material_description ?? '-' }} | {{ $item->quantity ?? 0 }} | {{ $item->uom ?? '-' }} | ₹{{ number_format($item->unit_rate ?? 0, 2) }} | {{ $item->discount ?? 0 }}% | ₹{{ number_format($item->value ?? 0, 2) }} | {{ $item->sgst ?? 0 }}% | {{ $item->cgst ?? 0 }}% | {{ $item->igst ?? 0 }}% | ₹{{ number_format($item->amount ?? 0, 2) }} |