@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()]) }}

@foreach ($stores as $store) @php $coverImage = $store->getMetaData('background', true); @endphp
@include('plugins/marketplace::themes.includes.store-item')
@endforeach
{{ $stores->withQueryString()->links(Theme::getThemeNamespace('partials.pagination')) }}