@extends('layouts.admin') @section('title', 'Supermarket Management') @section('content')
Manage supermarkets and their inventory
| Image | Name | Owner | Location | Store Size | Features | Status | Actions |
|---|---|---|---|---|---|---|---|
|
@if($supermarket->image)
|
{{ $supermarket->name }}
{{ $supermarket->getBizspotCategoryPath() ?? 'No Category' }}
|
{{ $supermarket->user->name }}
{{ $supermarket->user->email }}
|
{{ Str::limit($supermarket->address, 30) }} | @if($supermarket->supermarketDetail) {{ ucfirst($supermarket->supermarketDetail->store_size ?? 'Not Set') }} @else Not Set @endif |
@if($supermarket->supermarketDetail)
@if($supermarket->supermarketDetail->delivery_available)
Delivery @endif @if($supermarket->supermarketDetail->open_24_hours) 24/7 @endif @endif |
Active |
There are no supermarkets registered in the system yet.