@extends('layouts.admin') @section('page-title', $order->order_number) @section('content')
| Product | SKU | Qty | Unit Price | Tax % | Subtotal |
|---|---|---|---|---|---|
| {{ $i->product_name }} | {{ $i->sku }} | {{ $i->quantity }} | ₹{{ number_format($i->unit_price, 2) }} | {{ number_format($i->tax_percent, 1) }}% | ₹{{ number_format($i->subtotal, 2) }} |
{{ $order->billing_address }}
{{ $order->shipping_address }}