@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 }} | {{ $product['materialCode'] ?? '-' }} | {{ $product['hsnCode'] ?? '-' }} | {{ $product['description'] ?? '-' }} | {{ $product['quantity'] ?? '0' }} | {{ $product['uom'] ?? '-' }} | ₹{{ number_format($product['unitRate'] ?? 0, 2) }} | {{ $product['discount'] ?? '0' }}% | ₹{{ number_format($product['value'] ?? 0, 2) }} | {{ $product['sgst'] ?? '0' }}% | {{ $product['cgst'] ?? '0' }}% | {{ $product['igst'] ?? '0' }}% | ₹{{ number_format($product['amount'] ?? 0, 2) }} |