@include('admin.templates.breadcrumbs')
{{--| {{__('variables.name_text')}} | --}}
{{__('variables.last_name')}} |
{{__('variables.email_text')}} |
{{__('variables.phone')}} |
@if(!$orders->wish_id)
{{__('variables.country')}} |
{{__('variables.city')}} |
{{__('variables.address')}} |
@endif
|
{{$user_info->name ?? ''}}
|
{{--
{{$user_info->last_name ?? __('variables.do_not_exist')}}
| --}}
{{$user_info->email ?? __('variables.do_not_exist')}}
|
{{$user_info->phone ?? __('variables.do_not_exist')}}
|
@if(!$orders->wish_id)
{{$user_district->name ?? __('variables.do_not_exist') }}
|
{{$user_info->city ?? __('variables.do_not_exist')}}
|
{{$user_info->address ?? __('variables.do_not_exist')}}
|
@endif
@if(count($products_info))
| № |
{{__('variables.name_text')}} |
{{ShowLabelById(95)}} |
{{__('variables.articol')}} |
{{ShowLabelById(18)}} |
{{ShowLabelById(19)}} |
{{__('variables.price')}} |
{{__('variables.total_count')}} |
{{ShowLabelById(73)}} |
@foreach($products_info as $product_info)
| {{ $loop->iteration }} |
{{ $product_info['product_name'] }}
|
|
{{ $product_info['article'] }}
|
{{ $product_info['color'] ?? '-' }}
|
{{ $product_info['size'] ?? '-' }}
|
{{ $product_info['product_price'] }}
|
{{ $product_info['product_quantity'] }}
|
{{ $product_info['product_amount'] }}
|
@endforeach
@endif
@if(!empty($orderedItems) && count($orderedItems))
| № |
{{__('variables.name_text')}} |
{{__('variables.price')}} |
{{__('variables.total_count')}} |
{{__('variables.date_table')}} |
@foreach($orderedItems as $one_baket_item)
| {{ $loop->iteration }} |
{{$one_baket_item->name ?? ''}}
|
{{$one_baket_item->goods_price ?? ''}}
|
{{$one_baket_item->items_count ?? ''}}
|
{{ getDefaultDateFormatAdmin($one_baket_item->created_at) }}
|
@endforeach
@endif
@if($orders->ordersUsers && $orders->ordersUsers->descr)
{{__('variables.comment_table')}}
{{ $orders->ordersUsers->descr ?? '' }}
@endif