@extends('layouts.admin') @section('title', 'Mall Stores - ' . $mall->name) @section('content')
| Photo | Store Info | Location | Details | Status | Actions |
|---|---|---|---|---|---|
|
@if($store->logo_image)
|
{{ $store->store_name ?: 'Unit ' . $store->unit_number }}
{{ $store->store_number ?: 'N/A' }}
@if($store->tenantBusiness)
{{ $store->tenantBusiness->name }} @endif |
Floor {{ $store->floor_number }}
Unit {{ $store->unit_number }}
|
{{ $store->store_area_sqft ? number_format($store->store_area_sqft) . ' sq ft' : 'N/A' }}
{{ ucfirst(str_replace('_', ' ', $store->store_category)) }}
|
@php $statusColors = [ 'operational' => 'success', 'coming_soon' => 'warning', 'temporarily_closed' => 'danger', 'permanently_closed' => 'secondary' ]; $statusColor = $statusColors[$store->occupancy_status] ?? 'secondary'; @endphp {{ ucfirst(str_replace('_', ' ', $store->occupancy_status)) }} |