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