@php
$terms_ids = $row->terms->pluck('term_id');
$attributes = \Modules\Core\Models\Terms::getTermsById($terms_ids);
@endphp
@if(!empty($terms_ids) and !empty($attributes))
@foreach($attributes as $key => $attribute )
@php $translate_attribute = $attribute['parent']->translate() @endphp
@if(empty($attribute['parent']['hide_in_single']))
{{ $translate_attribute->name }}
@php $terms = $attribute['child'] @endphp
@foreach($terms as $term )
@php $translate_term = $term->translate() @endphp
-
{{$translate_term->name}}
@endforeach
@endif
@endforeach
@endif