@include('site.stores.all_store_cards', ['stores' => $stores])
@if($stores->hasMorePages())
@php
$total = $stores->total();
$perPage = $stores->perPage();
$currentPage = $stores->currentPage();
$shown = $currentPage * $perPage;
$shown = $shown > $total ? $total : $shown;
$percentage = $total > 0 ? round(($shown / $total) * 100) : 0;
@endphp
{{ __('Total ') }} {{ $shown }} / {{ $total }} {{ __('store') }}
@endif