{{ __('category') }} : {{ $order->product->categories->name ?? '-' }}
{{ __('ordered_on') }} : {{ $order->booking->booking_date }}
{{ __('brand') }} : {{ $order->product->shop->shop_name ?? '-' }}
{{ __('quantity') }} :{{ $order->quantity ?? '-' }}
{{ __('variant') }} : {{ $order->variant ?? '-' }}
{{ __('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 ?? '-' }}
{{ $order->booking->user_address ?? '-' }}
{{ $currencySymbol }}{{ $order->price ?? 0}}
{{ $currencySymbol }}{{ $order->booking->product_tax ?? '-'}}
{{ $currencySymbol }}{{ $order->booking->total_coupon_discount_amount ?? '0.00'}}
{{ $currencySymbol }}{{ $order->booking->payable_amount ?? '0.00'}}
{{ __('shipping_method') }} : {{ $order->delivery_info['shipping_method'] ?? '-' }}
{{ __('estimated_delivery_date') }} : {{ $order->delivery_info['estimated_delivery_date'] ?? '-' }}
{{ __('tracking') }} : {{ $order->delivery_info['tracking'] ?? '-' }}