@php
$coverImage = $store->getMetaData('cover_image', true) ?: theme_option('vendor_cover_default_image');
@endphp
@php
$description = BaseHelper::clean($store->description);
$content = BaseHelper::clean($store->content);
@endphp
@if ($description || $content)
{!! $content ?: $description !!}
@endif
@include(Theme::getThemeNamespace('views.marketplace.stores.items'), compact('products'))