|
{{ ShowLabelByIdWithLang(62, LANG_ID) }}
{{ ShowLabelByIdWithLang(38, LANG_ID) }}: {{ $orders_user->name ?? '-' }}
{{ ShowLabelByIdWithLang(40, LANG_ID) }}: {{ $orders_user->phone ?? '-' }}
{{ ShowLabelByIdWithLang(39, LANG_ID) }}: {{ $orders_user->email ?? '-' }}
@if(!$orders->fast_order)
@switch($orders->delivery_method)
@case('delivery')
@if($orders_user->districtId && $orders_user->districtId->name)
{{ ShowLabelByIdWithLang(43, LANG_ID) }}: {{ $orders_user->districtId->name }}
@endif
{{ ShowLabelByIdWithLang(44, LANG_ID) }}: {{ $orders_user->city ?? '' }}
{{ ShowLabelByIdWithLang(45, LANG_ID) }}: {{ $orders_user->address ?? '' }}
@break
@case('pickup')
@if($orders_user->shopsId && $orders_user->shopsId->name)
{{ ShowLabelByIdWithLang(46, LANG_ID) }}: {{ $orders_user->shopsId->name ?? '' }}
@endif
@break
@default
@break
@endswitch
{{ ShowLabelByIdWithLang(42, LANG_ID) }}: {{ getEnumValueNameWithLang($orders->delivery_method) }}
{{ ShowLabelByIdWithLang(47, LANG_ID) }}: {{ getEnumValueNameWithLang($orders->pay_method) }}
@if($orders->pay_method == 'iute_credit')
{{ ShowLabelByIdWithLang(168, LANG_ID) }}: {{ $orders_data->credit_months }} @if($orders_data->credit_zero) - (0%) @endif
{{ ShowLabelByIdWithLang(169, LANG_ID) }}: {{ getDefaultPriceFormat($orders_data->credit_month_price) }} {{ ShowLabelByIdWithLang(161, LANG_ID) }}
@endif
@endif
{{ ShowLabelByIdWithLang(63, LANG_ID) }}: {{ getDefaultDateFormat($orders->created_at) }}
|