@if (session('success'))
✓ {{ session('success') }}
@endif @if (session('error'))
✗ {{ session('error') }}
@endif
Total Shops
{{ $stats['total'] }}
Active
{{ $stats['active'] }}
Inactive
{{ $stats['inactive'] }}
Blocked
{{ $stats['blocked'] }}
@if ($shops->count() > 0) @foreach ($shops as $shop) @endforeach
Code Sticker Code Shop Name Owner Phone City Type Agent Status Actions
{{ $shop->code }} @if ($shop->sticker_code) {{ $shop->sticker_code }} @else - @endif {{ $shop->name }} {{ $shop->owner_name ?? '-' }} {{ $shop->phone }} {{ $shop->city ?? '-' }} {{ $shop->shop_type }} {{ $shop->agent ? $shop->agent->name : 'Unassigned' }} @if ($shop->status == 'active') Active @elseif($shop->status == 'inactive') Inactive @else Blocked @endif
@else

No shops found. Create your first shop

@endif