@extends('layouts.admin') @section('title', 'Store Details - ' . $store->store_name) @section('content')

Store Details

{{ $store->store_name }}
Business Name: {{ $store->store_name }}
Brand Name: {{ $store->brand_name ?: 'N/A' }}
Unit Number: {{ $store->unit_number }}
Floor Number: {{ $store->floor_number }}
Store Category: {{ ucfirst(str_replace('_', ' ', $store->store_category)) }}
Business Type: {{ ucfirst($store->business_type) }}
Contact Name: {{ $store->primary_contact_name }}
Phone: {{ $store->primary_contact_phone }}
Email: {{ $store->primary_contact_email }}
WhatsApp: {{ $store->whatsapp_number ?: 'N/A' }}
Website: @if($store->website_url) {{ $store->website_url }} @else N/A @endif
@if($store->store_description)
Business Description

{{ $store->store_description }}

@endif @if($store->logo_image)
Business Logo
{{ $store->store_name }} Logo
@endif @if($store->store_images && is_array($store->store_images) && count($store->store_images) > 0)
Store Images
@foreach($store->store_images as $index => $image)
Store Image {{ $index + 1 }}
@endforeach
@endif @if(!$store->logo_image && (!$store->store_images || !is_array($store->store_images) || count($store->store_images) === 0))

No images uploaded yet

@endif
Business Status

@php $statusColors = [ 'pending' => 'warning', 'approved' => 'success', 'rejected' => 'danger', 'suspended' => 'secondary' ]; $statusColor = $statusColors[$store->registration_status] ?? 'secondary'; @endphp {{ ucfirst($store->registration_status) }}

{{ ucfirst(str_replace('_', ' ', $store->occupancy_status ?? 'N/A')) }}
@if($store->store_number)

{{ $store->store_number }}

@endif @if($store->application_date)

{{ $store->application_date->format('M d, Y') }}

@endif @if($store->approved_at)

{{ $store->approved_at->format('M d, Y') }}

@endif @if($store->opening_date)

{{ $store->opening_date->format('M d, Y') }}

@endif
Actions
Edit Details @if($store->registration_status === 'approved') @if($store->tenantBusiness) Manage Products Manage Services @else
No business account found. Create one to manage products and services.
@csrf
@endif @endif @if($store->registration_status === 'pending') @endif
@endsection @section('scripts') @endsection