{{ __('product_info') }}
@php $image = $order->product->product_image ?? uploadedAsset(''); @endphp
product
{{ $order->product_name ?? '-'}}

{{ __('category') }} : {{ $order->product->categories->name ?? '-' }}

{{ __('ordered_on') }} : {{ $order->booking->booking_date }}

@php $statusMap = [ 1 => __('pending'), 2 => __('confirmed'), 3 => __('shipped'), 4 => __('delivery'), 5 => __('vendor_cancel'), 6 => __('customer_cancel'), ]; $statusClass = [ 1 => 'badge-soft-warning', 2 => 'badge-soft-success', 3 => 'badge-soft-info', 4 => 'badge-soft-success', 5 => 'badge-soft-info', 6 => 'badge-soft-info', ]; $status_class = $statusClass[$order->product_status] ?? 'badge-soft-info'; $status = $statusMap[$order->product_status] ?? __('pending'); @endphp {{ $status }}
{{ __('Overview') }}

{{ __('brand') }} : {{ $order->product->shop->shop_name ?? '-' }}

{{ __('quantity') }} :{{ $order->quantity ?? '-' }}

{{ __('variant') }} : {{ $order->variant ?? '-' }}

{{ __('customer_details') }}

{{ __('name') }} : {{ !empty($order->booking->first_name) || !empty($order->booking->last_name) ? ucwords(trim($order->booking->first_name . ' ' . $order->booking->last_name)) : '-' }}

{{ __('email') }} : {{ $order->booking->user_email ?? '-' }}

{{ __('phone') }} : {{ $order->booking->user_phone ?? '-' }}

{{ __('shipping_address') }}
{{ !empty($order->booking->first_name) || !empty($order->booking->last_name) ? ucwords(trim($order->booking->first_name . ' ' . $order->booking->last_name)) : '-' }}

{{ $order->booking->user_address ?? '-' }}

{{ __('payment_details') }}
{{ __('product_subtotal') }}

{{ $currencySymbol }}{{ $order->price ?? 0}}

{{ __('Tax') }}

{{ $currencySymbol }}{{ $order->booking->product_tax ?? '-'}}

{{ __('Coupon') }}

{{ $currencySymbol }}{{ $order->booking->total_coupon_discount_amount ?? '0.00'}}

{{ __('total_payable') }}

{{ $currencySymbol }}{{ $order->booking->payable_amount ?? '0.00'}}

{{ __('delivery_info') }}

{{ __('shipping_method') }} : {{ $order->delivery_info['shipping_method'] ?? '-' }}

{{ __('estimated_delivery_date') }} : {{ $order->delivery_info['estimated_delivery_date'] ?? '-' }}

{{ __('tracking') }} : {{ $order->delivery_info['tracking'] ?? '-' }}