@extends('layouts.admin') @section('content')
| Id | {{ $shop->id }} |
|---|---|
| Name | {{ $shop->name }} |
| Category | {{ $shop->category }} |
| Property | {{ optional($shop->property)->name ?? '—' }} |
| Linked Unit | {{ optional($shop->unit)->name ?? '—' }} |
| Floor | {{ $shop->floor }} |
| Phone | {{ $shop->phone }} |
| Description | {{ $shop->description }} |
| Location | {{ $shop->latitude }}, {{ $shop->longitude }} |
| Directions | {{ $shop->directions }} |
| Status | {{ $shop->is_active ? 'Active' : 'Inactive' }} |