@extends('layouts.app') @section('title', 'Order #' . $order->id) @section('content')
| Category | Weight | Bags | Price/Bag | Subtotal |
|---|---|---|---|---|
| {{ $item->product->category->name ?? '-' }} | {{ $item->product->weight->label ?? '-' }} | {{ (int)$item->quantity }} | Rs. {{ number_format($item->price, 2) }} | Rs. {{ number_format($item->subtotal, 2) }} |
| Order Total: | Rs. {{ number_format($order->total, 2) }} | |||
| Received at Order: | Rs. {{ number_format($order->paid, 2) }} | |||