@extends('backend.layout') @section('backend_content')
{{-- ══ Header ══ --}}

Shop Management

Manage shops and their details
@if (auth()->user()->hasRole('super-admin')) @endif
{{-- ══ Shops Table ══ --}}
@forelse ($shops as $shop) @php $staffCount = $shop->users->count(); if ($shop->creator && !$shop->users->contains('id', $shop->creator->id)) { $staffCount++; } @endphp @empty @endforelse
Shop Brand Color Creator Staff Count Action
@if ($shop->logo) {{ $shop->name }} @else
@endif
{{ $shop->name }}
{{ $shop->contact['phone'] ?? 'No contact' }}
{{ $shop->brand_color }}
{{ $shop->creator->name }}{{ $staffCount }} Staff
No shops found. Please create a shop.
{{-- Delete Confirmation Modal --}} @endsection