@php $coverImage = $store->getMetadata('background', true); @endphp
avatar

{{ $store->name }}

@if (EcommerceHelper::isReviewEnabled())
{!! Theme::partial('star-rating', [ 'avg' => $store->reviews()->avg('star'), 'count' => $store->reviews()->count(), ]) !!}
@endif @if (! MarketplaceHelper::hideStoreAddress() && $store->full_address)
  {{ Str::mask($store->full_address, '*', 4, 20) }}
@endif @if (!MarketplaceHelper::hideStorePhoneNumber() && $store->phone) @endif @if (!MarketplaceHelper::hideStoreEmail() && $store->email) @endif
@if (!MarketplaceHelper::hideStoreSocialLinks() && ($socials = $store->getMetaData('socials', true)))
    @foreach ((array) $socials as $k => $link)
  • @endforeach
@endif
  • {{ __('Started from') }}: {{ $store->created_at->translatedFormat('M d, Y') }}
@if (!empty($showContactVendor)) @endif
@php $description = BaseHelper::clean($store->description); $content = BaseHelper::clean($store->content); @endphp @if ($description || $content)
@if ($content)
{!! $content !!}
@endif
{!! $description ?: Str::limit($content, 250) !!}
{{ __('show more') }} {{ __('show less') }}
@endif