@extends('layouts.dashboard.superadminapp') @section('title', 'Edit Sales Order') @section('styles') @endsection @section('content')

Edit Sales Order

{{ $order->sales_order_no }}
{{ now()->format('l') }}, {{ now()->format('d') }} {{ now()->format('F') }} {{ now()->format('Y') }}
@if (session('success')) @endif @if (session('error')) @endif
@csrf @method('PUT')

Sales Order Details

Customer Information

RFQ & Product Information

Billing & Shipping

@php $products = is_array($order->table_products) ? $order->table_products : json_decode($order->table_products, true) ?? []; @endphp

Product Items

@foreach($products as $index => $product) @endforeach
# Material Code HSN Code Description Additional Details Req By Date Qty UOM Unit Rate Disc % Value SGST % CGST % IGST % Amount
{{ $index + 1 }}

Summary

Sub Total:
SGST Amount:
CGST Amount:
IGST Amount:
Round Up:
Grand Total:
@endsection @section('scripts') @endsection