@php
$item_translation = $item->translations->where('language_id',getLocaleId())->first();
@endphp
@if ($item->product->manufacturer->slug)
{!! $item->product->manufacturer->name !!}
@else
{!! $item->shop->getQualifiedName() !!}
@endif
{!! $item_translation->title ?? $item->title !!}
@if ($item->ratings)
@include('website.layouts.ratings', ['ratings' => $item->ratings, 'count' => $item->ratings_count])
@endif
@include('website.layouts.pricing', ['item' => $item])
@lang('theme.availability'):
{{ $item->availability }}
@if (config('system_settings.show_item_conditions'))
@lang('theme.condition'):
{!! $item->condition !!}
@if ($item->condition_note)
@endif
@endif
@include('theme::layouts.share_btns')