@extends('layouts.admin') @section('content')
Shop: {{ $shop->name }}
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' }}
@if($shop->images && $shop->images->count())
Gallery
@foreach($shop->images as $img) @endforeach
@endif Back
@endsection