@extends('vendor-dashboard.layouts.app') @section('contents')
Billing Information
@php $billingInfo = $order->billing_info; $shippingInfo = $order->shipping_info; @endphp {{ $billingInfo['first_name'] }} {{ $billingInfo['last_name'] }}Shipping Information
@if ($shippingInfo) {{ $shippingInfo['first_name'] }} {{ $shippingInfo['last_name'] }}| Product | Qnt | Unit ({{ $order->currency }}) | Amount ({{ $order->currency }}) | |
|---|---|---|---|---|
| {{ $loop->iteration }} |
{{ $orderProduct->product->name }} {{ $orderProduct?->variant['name'] ?? '' }}
|
{{ $orderProduct->quantity }} | {{ $orderProduct->unit_price }} | {{ $orderProduct->unit_price * $orderProduct->quantity }} |
| Subtotal | {{ $subtotal }} | |||
| Discount | {{ $order?->discount ?? 0 }} | |||
| Shipping | {{ $order->shipping_charge ?? 0 }} | |||
| Total Amount | {{ $order->currency }} {{ $order->total }} | |||
Thank you very much for doing business with us. We look forward to working with you again!