@lang('trans.orderDetails') ( {{ $Order['id'] }} )
@foreach($Order->OrderProducts as $item ) @php($ItemOptions = $Options->whereIn('id',explode(',', $item->options))->pluck('title')->implode(',')) @endforeach @if($Order->charge_cost > 0) @endif @if($Order->discount > 0) @endif @if($Order->coupon > 0) @endif @if($Order->payment_vat > 0) @endif @if($Order->wallet > 0) @endif
Logo

{{ $Order->Client ? $Order->client?->name : '' }}

{{ $Order->Client ? $Order->client?->email : '' }}

{{ $Order->Client ? $Order->client?->phone_code . $Order->client?->phone : '' }}

@if($Order->delivery_date && $Order->delivery_time)

@lang('trans.Delivery Information')

({{ $Order->delivery_time }}) - ({{ $Order->delivery_date }})

@endif
@if ($Order->address)

{{ $Order->address->country_text }}, {{ $Order->address->region_text }}

{{ $Order->address->country_id == 1 ? __("trans.block") : __("trans.district") }} : {{ $Order->address->block ?? $Order->address->building_no }}

{{ $Order->address->country_id == 1 ? __("trans.street") : __("trans.road") }} : {{ $Order->address->road }}

{{ $Order->address->additional_directions }}

@endif

{{ $item->product?->title() }}

@if($Order->OrderProducts->sum('size_id') > 0)

{{ $item->Size?->title() }}

@endif @if($Order->OrderProducts->sum('color_id') > 0)

{{ $item->Color?->title() }}

@endif

{{ $item->quantity }} * {{ $item->price . ' '. Country()->currancy_code }}

@if($ItemOptions)

{{ $ItemOptions }}

@endif @if($item->note)

{{ $item->note }}

@endif
{{ __("trans.sub_total") }} {{ $Order->sub_total . ' '. Country()->currancy_code }}
{{ __("trans.charge_cost") }} {{ $Order->charge_cost . ' '. Country()->currancy_code }}
{{ __("trans.discount") }} {{ $Order->discount . ' '. Country()->currancy_code }}
{{ __("trans.vat") }} {{ $Order->vat . ' '. Country()->currancy_code }}
{{ __("trans.coupon") }} ({{ $Order->coupon_text }}) {{ $Order->coupon . ' '. Country()->currancy_code }}
{{ __("trans.payment_vat") }} {{ $Order->payment_vat . ' '. Country()->currancy_code }}
{{ __("trans.wallet") }} {{ $Order->wallet . ' '. Country()->currancy_code }}
{{ __("trans.net_total") }} {{ $Order->net_total . ' '. Country()->currancy_code }}
{{ __("trans.paymentMethod") }} {{ $Order->PaymentMethod ? $Order->PaymentMethod->title() : '' }}
Logo