{{ __('Products') }} | |
---|---|
@php
$slug = $detail->product->type == 'Variation' ? $detail->product->parentDetail->slug : $detail->product->slug
@endphp
{{ $detail->product_name }} x {{ formatCurrencyAmount($detail->quantity) }}
@if(isset($detail->vendor->name))
{{ __('Vendor') }}: {{ $detail->vendor->name }}
@endif
{{ formatNumber($detail->price, optional($order->currency)->symbol) }}
|
|
{{ __('Shipping') }}: @if(!is_null($order->shipping_title)) ({{ $order->shipping_title }}) @endif | {{ formatNumber($order->shipping_charge, optional($order->currency)->symbol) }} |
{{ __('Tax') }}: | {{ formatNumber($order->tax_charge, optional($order->currency)->symbol) }} |
{{ __('Coupon offer') }}: | {{ formatNumber($order->couponRedeems->sum('discount_amount'), optional($order->currency)->symbol) }} |
{{ __('Grand Total') }}: | {{ formatNumber($order->total, optional($order->currency)->symbol) }} |
{{ __('Note') }}: | {{ $order->note }} |