{{-- Header Section --}}
{{-- Order Details Table --}}
Order Details
{{-- Order Info --}}
{{-- Product Table --}}
{{-- Payment Info --}}
- Order To:
-
{{ $order_detail->user->first_name ?? '' }}
+{{ $order_detail->user->phone_number ?? '' }}
@php use Carbon\Carbon; @endphp
- Order No: {{ $order_detail->order_number ?? '' }}
- Date: {{ Carbon::parse($order_detail->created_at)->format('d/m/Y') }}
| SL | Product Name | Price | Qty | Total |
|---|---|---|---|---|
| {{ $order->id ?? '' }} | {{ $order->product->product_name ?? '' }} | ${{ $order->price ?? '' }} | {{ $order->quantity ?? '' }} | ${{ $order->price * $order->quantity }} | @php $sub_total += $order->price * $order->quantity; @endphp
- Payment Info:
-
Account: 1234567890
A/C Name:
Bank Details: Add your details
- Sub Total: ${{ number_format($sub_total ?? 0, 2) }} {{--
- Tax:$5.00 --}}
- Total: ${{ number_format($sub_total ?? 0, 2) }}