@extends('layouts.admin') @section('title', 'Order: '.$order->order_number) @section('content')
| Product | Type | Qty | Price | Subtotal |
|---|---|---|---|---|
| {{ $item->product->name ??'-' }} | @php $dispType = $item->license_type === 'unlimited' ? 'Extended' : 'Regular'; $isExt = $item->license_type === 'unlimited'; @endphp{{ $dispType }} | {{ $item->quantity }} | {{ $currencySymbol }}{{ number_format($item->price,2) }} | {{ $currencySymbol }}{{ number_format($item->subtotal,2) }} |
| Total | {{ $currencySymbol }}{{ number_format($order->total,2) }} | |||