@extends('layouts.admin') @section('title', 'Order '.$order->order_number) @section('content')
| Product | Variant | Qty | Price |
|---|---|---|---|
| {{ $item->product_title }} | {{ is_array($item->variant_info) ? implode(', ', $item->variant_info) : '' }} | {{ $item->quantity }} | ৳{{ number_format($item->price, 2) }} |
Sent via {{ ucfirst($order->courier) }} — #{{ $order->courier_consignment_id }}
@else @endif