@extends('layouts.admin') @section('title', $market->name . ' - Market Details') @section('content')
Market Overview

Type: {{ ucfirst($market->market_type ?? 'N/A') }}

Address: {{ $market->address ?? 'N/A' }}

Phone: {{ $market->phone ?? 'N/A' }}

Email: {{ $market->email ?? 'N/A' }}

Total Stalls: {{ $market->number_of_stalls ?? 0 }}

Created: {{ $market->created_at->format('M d, Y') }}

@if($market->description)
Description:

{{ $market->description }}

@endif
Statistics

Total Stalls: {{ $stats['total_stalls'] }}

Occupied Stalls: {{ $stats['occupied_stalls'] }}

Active Vendors: {{ $stats['active_vendors'] }}

Monthly Revenue: ${{ number_format($stats['monthly_revenue'], 2) }}

@endsection @push('scripts') @endpush