{{ __('Order Date') }} {{date('d-M-Y',strtotime($order->created_at))}}
@if($order->dp == 1){{ __('Tax:') }} {{ \PriceHelper::showOrderCurrencyPrice((($order->tax) / $order->currency_value),$order->currency_sign) }}
{{ __('Paid Amount:') }} {{ \PriceHelper::showOrderCurrencyPrice(($order->pay_amount * $order->currency_value),$order->currency_sign) }}
{{ __('Payment Method:') }} {{$order->method}}
@if($order->method != "Cash On Delivery") @if($order->method=="Stripe") {{$order->method}} {{ __('Charge ID:') }}{{$order->charge_id}}
@endif {{$order->method}} {{ __('Transaction ID:') }}{{$order->txnid}}
@endif{{ __('ID#') }} | {{ __('Name') }} | {{ __('Details') }} | {{ __('Price') }} | {{ __('Total') }} |
---|---|---|---|---|
{{ $product['item']['id'] }} | {{mb_strlen($product['item']['name'],'UTF-8') > 50 ? mb_substr($product['item']['name'],0,50,'UTF-8').'...' : $product['item']['name']}} |
{{ __('Quantity') }}: {{$product['qty']}} @if(!empty($product['size'])) {{ __('Size') }}: {{ $product['item']['measure'] }}{{str_replace('-',' ',$product['size'])}} @endif @if(!empty($product['color'])) {{ __('Color') }}: @endif @if(!empty($product['keys'])) @foreach( array_combine(explode(',', $product['keys']), explode(',', $product['values'])) as $key => $value) {{ ucwords(str_replace('_', ' ', $key)) }} : {{ $value }} @endforeach @endif |
{{ \PriceHelper::showCurrencyPrice(($product['item_price'] ) * $order->currency_value) }} | {{ \PriceHelper::showCurrencyPrice(($product['item_price'] * $product['qty'] ) * $order->currency_value) }} {{ $product['discount'] == 0 ? '' : '('.$product['discount'].'% '.__('Off').')' }} |