@extends('layouts.dashboard.adminapp') @section('title', 'Sales Order Details') @section('content')
| Sl No. | Material Code | HSN Code | Description | Additional Details | Required By Date | Quantity | UOM | Unit Rate | Discount (%) | Value (INR) | SGST (%) | CGST (%) | IGST (%) | Amount (INR) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $item->sl_no }} | {{ $item->material_code ?? '-' }} | {{ $item->hsn_code ?? '-' }} | {{ $item->material_description ?? '-' }} | {{ $item->additional_details ?? '-' }} | {{ $item->required_by_date ? \Carbon\Carbon::parse($item->required_by_date)->format('d M Y') : '-' }} | {{ $item->quantity }} | {{ $item->uom }} | ₹{{ number_format($item->unit_rate, 2) }} | {{ $item->discount }}% | ₹{{ number_format($item->value, 2) }} | {{ $item->sgst }}% | {{ $item->cgst }}% | {{ $item->igst }}% | ₹{{ number_format($item->amount, 2) }} |