-
{{ __('admin.order_num') }}
#{{ $order->order_num }}
-
{{ __('validation.attributes.delivery_method') }}
{{ $order->receiving_method['text'] }}
@if ($order->receiving_method['value'] == App\Enums\ProductDeliveryTypesEnum::Home->value)
-
{{ __('apis.delivery_address') }}
{{ $order->map_desc }}
@endif
-
{{ __('apis.order_time') }}
{{ isset($order->schedule_execution_date) && isset($order->schedule_execution_time)
? $order->schedule_execution_date . ' ' . $order->schedule_execution_time
: $order->created_at }}
-
{{ __('validation.attributes.order_total') }}
{{ $invoice->total . ' ' . __('site.currency') }}
@if ($order->receiving_method['value'] == App\Enums\ProductDeliveryTypesEnum::Home->value)
-
{{ __('apis.delivery_price') }}
{{ $order->delivery_price . ' ' . __('site.currency') }}
@endif
-
{{ __('apis.value_added_tax') }} {{ '(' . Cache::get('settings')['vat_ratio'] . '%)' }}
{{ $invoice->vat_amount . ' ' . __('site.currency') }}
-
{{ __('apis.final_total') }}
{{ $invoice->final_total . ' ' . __('site.currency') }}