Logo

{{__('messages.t_placed_order_id')}}{{$order->order_number}}

@if (!isEnablePointSystem()) {{__('messages.t_view_order')}} @endif
@foreach ($order->items as $item)
@php $imageProperties = $item->ad->image_properties; $altText = $imageProperties['1'] ?? $item->ad->title; @endphp {{ $altText }}

{{ $item->ad->title }} x {{$item->quantity}}

{{ $item->ad->category->name }}

{{__('messages.t_order_seller')}} {{ $item->ad->user->name }}

{{__('messages.t_order_price',['price'=> isEnablePointSystem() ? currencyToPointConversion(formatPriceWithCurrency($item->price)) : formatPriceWithCurrency($item->price)])}}

@endforeach

{{__('messages.t_order_track')}}

{{__('messages.t_order_summary')}}

{{__('messages.t_cart_quantity',['cartquantity'=>$order->items->count()])}} {{ isEnablePointSystem() ? currencyToPointConversion(formatPriceWithCurrency($order->subtotal_amount)) : formatPriceWithCurrency($order->subtotal_amount) }}
{{--
{{__('messages.t_discount')}} {{ isEnablePointSystem() ? currencyToPointConversion(formatPriceWithCurrency($order->discount_amount)) : formatPriceWithCurrency($order->discount_amount) }}
--}} @if (!isEnablePointSystem() && isECommerceTaxOptionEnabled())
{{__('messages.t_tax')}} {{ currencyToPointConversion(formatPriceWithCurrency($order->tax_amount))}}
@endif
{{ __('messages.t_delivery_charges') }}{{ __('messages.t_free_charge') }}
{{ __('messages.t_total_amount') }}{{ isEnablePointSystem() ? currencyToPointConversion(formatPriceWithCurrency($order->total_amount)) : formatPriceWithCurrency($order->total_amount) }}
@if (!isEnablePointSystem() && $order->total_amount != $order->converted_amount)
{{__('messages.t_my_purchase_converted_amount')}} {{ currencyToPointConversion(formatPriceWithCurrency($order->converted_amount))}}
@endif

{{__('messages.t_payment_info')}}

{{__('messages.t_payment_method')}} {{ \Str::title($order->payment_method) }}
{{__('messages.t_date_of_process')}} {{ \Str::title(\Carbon\Carbon::parse($order->created_at)->format('d M Y h:m a') ) }}

{{__('messages.t_shipping_info')}}

{{__('messages.t_order_contact_name')}}{{ $order->contact_name }}
{{__('messages.t_order_address')}}{{$order->shipping_address}}
{{__('messages.t_order_contact_no')}}{{ $order->contact_phone_number }}