{{ RvMedia::image($store->logo, $store->name, useDefaultImage: true, attributes: ['class' => 'bb-shop-banner-logo']) }}

{{ $store->name }}

@if (EcommerceHelper::isReviewEnabled())
@include(EcommerceHelper::viewPath('includes.rating-star'), ['avg' => $store->reviews()->avg('star'), 'size' => 80]) {{ __('(:count reviews)', ['count' => number_format($store->reviews->count())]) }}
@endif @if ($store->full_address || $store->phone || $store->email)
{{ $store->full_address }}
@if (!MarketplaceHelper::hideStorePhoneNumber() && $store->phone) @endif @if (!MarketplaceHelper::hideStoreEmail() && $store->email) @endif
@endif @if ($store->description)
{!! BaseHelper::clean($store->description) !!}
@endif @if (!MarketplaceHelper::hideStoreSocialLinks() && ($socials = $store->getMetaData('socials', true)))
    @foreach ((array) ['facebook', 'instagram', 'x', 'youtube', 'linkedin'] as $social) @continue(empty($link = Arr::get($socials, $social)))
  • @endforeach @if ($twitter = Arr::get($socials, 'twitter'))
  • @endif
@endif