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