@php
Theme::layout('full-width');
Theme::set('pageTitle', __('Stores'));
@endphp
{{ __('Showing :from-:to of :total stores', ['from' => $stores->firstItem(), 'to' => $stores->lastItem(), 'total' => $stores->total()]) }}
{!! apply_filters('ads_render', null, 'listing_page_before') !!}
@foreach ($stores as $store)
@php
$coverImage = $store->getMetaData('background', true);
@endphp
@include('plugins/marketplace::themes.includes.store-item')
@endforeach
{!! apply_filters('ads_render', null, 'listing_page_after') !!}
{{ $stores->withQueryString()->links(Theme::getThemeNamespace('partials.pagination')) }}