@extends('layouts.admin') @section('title', 'Market Categories - Bizspot Integration') @section('content')

Market Categories

Unified Bizspot category system for market stalls

Total Markets
{{ $stats['total_markets'] }}
Total Stalls
{{ $stats['total_stalls'] }}
Categorized
{{ $stats['categorized_stalls'] }}
Uncategorized
{{ $stats['uncategorized_stalls'] }}
Occupied
{{ $stats['occupied_stalls'] }}
Active Vendors
{{ $stats['active_vendors'] }}
Bizspot Business Types for Market Stalls
Unified System
@foreach($bizspotBusinessTypes as $businessType)
{{ $businessType->name }}
{{ $businessType->slug }}

{{ $businessType->description ?: 'No description available' }}

@if(isset($categoryDistribution[$businessType->name]))
Stalls using this type: {{ $categoryDistribution[$businessType->name] }}
@else
Stalls using this type: 0
@endif @if($businessType->mainCategories->count() > 0)
Main Categories:
@foreach($businessType->mainCategories->take(3) as $mainCategory) {{ $mainCategory->name }} @endforeach @if($businessType->mainCategories->count() > 3) +{{ $businessType->mainCategories->count() - 3 }} more @endif
@endif
@endforeach
Business Type Distribution
Market Integration Guide
Unified Categories
All markets use Bizspot categories
Active
Categorized Stalls
Stalls with assigned categories
{{ $stats['categorized_stalls'] }}
Uncategorized Stalls
Stalls needing category assignment
{{ $stats['uncategorized_stalls'] }}
Category Coverage
Percentage of categorized stalls
{{ $stats['total_stalls'] > 0 ? round(($stats['categorized_stalls'] / $stats['total_stalls']) * 100, 1) : 0 }}%
Quick Actions
@push('scripts') @endpush @endsection