direction == 1) dir="rtl" @endif> {{-- required meta tags --}} {{-- title --}}
{{ __('Product') }} | {{ __('Quantity') }} | {{ __('Total') }} |
---|---|---|
{{ \Illuminate\Support\Str::limit($item['name'], 35, $end = '...') }} | {{ $item['qty'] }} | {{ $basicInfo->base_currency_symbol_position == 'left' ? $basicInfo->base_currency_symbol : '' }} {{ $item['qty'] * $item['price'] }} {{ $basicInfo->base_currency_symbol_position == 'right' ? $basicInfo->base_currency_symbol : '' }} |
{{ __('Order ID') . ': ' }}{{ '#' . $orderInfo->order_number }}
{{ __('Order Date') . ': ' }}{{ date_format($orderInfo->created_at, 'M d, Y') }}
{{ __('Shipping Charge') . ': ' }} {{ $orderInfo->currency_symbol_position == 'left' ? $orderInfo->currency_symbol : '' }} {{ $orderInfo->shipping_charge }} {{ $orderInfo->currency_symbol_position == 'right' ? $orderInfo->currency_symbol : '' }}
{{ __('Total Price') . ': ' }} {{ $orderInfo->currency_symbol_position == 'left' ? $orderInfo->currency_symbol : '' }} {{ $orderInfo->total }} {{ $orderInfo->currency_symbol_position == 'right' ? $orderInfo->currency_symbol : '' }}
{{ __('Coupon Discount') . ': ' }}{{ $orderInfo->currency_symbol_position == 'left' ? $orderInfo->currency_symbol : '' }} {{ $orderInfo->discount != null ? $orderInfo->discount : '0' }} {{ $orderInfo->currency_symbol_position == 'right' ? $orderInfo->currency_symbol : '' }}
{{ __('Payment Method') . ': ' }}{{ $orderInfo->method }}
{{ __('Payment Status') . ': ' }} @if ($orderInfo->payment_status == 'completed') {{ __('Completed') }} @elseif ($orderInfo->payment_status == 'pending') {{ __('Pending') }} @elseif ($orderInfo->payment_status == 'rejected') {{ __('Rejected') }} @else - @endif
{{ __('Name') . ': ' }}{{ $orderInfo->billing_fname . ' ' . $orderInfo->billing_lname }}
{{ __('Email') . ': ' }}{{ $orderInfo->billing_email }}
{{ __('Contact Number') . ': ' }}{{ $orderInfo->billing_phone }}
{{ __('Address') . ': ' }}{{ $orderInfo->billing_address }}
{{ __('City') . ': ' }}{{ $orderInfo->billing_city }}
{{ __('State') . ': ' }}{{ is_null($orderInfo->billing_state) ? '-' : $orderInfo->billing_state }}
{{ __('Country') . ': ' }}{{ $orderInfo->billing_country }}
{{ __('Name') . ': ' }}{{ $orderInfo->shipping_fname . ' ' . $orderInfo->shipping_lname }}
{{ __('Email') . ': ' }}{{ $orderInfo->shipping_email }}
{{ __('Contact Number') . ': ' }}{{ $orderInfo->shipping_phone }}
{{ __('Address') . ': ' }}{{ $orderInfo->shipping_address }}
{{ __('City') . ': ' }}{{ $orderInfo->shipping_city }}
{{ __('State') . ': ' }}{{ is_null($orderInfo->shipping_state) ? '-' : $orderInfo->shipping_state }}
{{ __('Country') . ': ' }}{{ $orderInfo->shipping_country }}