![]() |
|||||
{{ $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() : '' }} | ||||
![]() |