@extends('layouts.admin') @section('heading', 'Shops') @section('subheading', 'All shops registered in the system.') @section('actions') + Add shop @endsection @section('content') @if (session('status'))
| Shop | Owner | City | Phone | Status | Actions |
|---|---|---|---|---|---|
| {{ $shop->name }} | {{ $shop->owner_name ?? '—' }} | {{ $shop->city ?? '—' }} | {{ $shop->phone ?? '—' }} | @if($shop->is_active) Active @else Inactive @endif | Edit |
| No shops yet. | |||||