@extends('layouts.admin') @section('title', $market->name . ' - Market Details') @section('content')
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') }}
{{ $market->description }}
Total Stalls: {{ $stats['total_stalls'] }}
Occupied Stalls: {{ $stats['occupied_stalls'] }}
Active Vendors: {{ $stats['active_vendors'] }}
Monthly Revenue: ${{ number_format($stats['monthly_revenue'], 2) }}