| {{ trans('variables.last_name') }} |
{{ $data['name'] ?? '' }} |
{{--
| {{ trans('variables.goods_questions') }} |
{{trans('variables.link_to')}} Back - {{ $goods_name ?? '' }}
{{trans('variables.link_to')}} Front - {{ $goods_name ?? '' }}
|
--}}
| {{ trans('variables.phone') }} |
{{$data['phone'] ?? '' }} |
| {{ trans('variables.product_name') }} |
{{$goods_item->itemByLang->name ?? '' }} |
| {{ trans('variables.filial') }} |
{{ $shop ?? '' }} |
| {{ trans('variables.comment_table') }} |
@if(!empty($parameters) && count($parameters))
@foreach($parameters as $parameterName => $items)
{{ $parameterName }}:
{{ $items->pluck('itemByLang.name')->implode(', ') }}
@endforeach
@endif
@if(!empty($string) && count($string))
@foreach($string as $text)
{{$text ?? ''}}
@endforeach
@endif
|