@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
@include('provider.partials.sidebar')
{{ __('manage_shops') }}
@forelse($activeShops as $shop)
@include('provider.shops.partials.shop-card', ['shop' => $shop, 'isActive' => true])
@empty
{{ __('no_active_shops') }}
@endforelse{{ $activeShops->links('pagination::bootstrap-5') }}
@forelse($inactiveShops as $shop)
@include('provider.shops.partials.shop-card', ['shop' => $shop, 'isActive' => false])
@empty
{{ __('no_active_shops') }}
@endforelse{{ $inactiveShops->links('pagination::bootstrap-5') }}