@extends('layouts.admin') @section('title', 'Mall Management') @section('content')

Mall Management

Add New Mall
Total Malls
{{ $totalMalls }}
Total Stores
{{ $totalStores }}
Occupied Stores
{{ $occupiedStores }}
Upcoming Events
{{ $upcomingEvents }}
Search & Filter Malls
Reset
Malls
@if($malls->count() > 0)
@foreach($malls as $mall) @endforeach
Mall Info Type Stores Location Actions
{{ $mall->name }}
{{ $mall->getBizspotCategoryPath() ?? 'No Category' }}
{{ ucfirst($mall->mallDetail->mall_type ?? 'N/A') }} {{ $mall->mallDetail->total_stores ?? 0 }} {{ Str::limit($mall->address, 40) }} View
{{ $malls->links() }}
@else
No Malls Found

There are no malls registered in the system yet.

Add Your First Mall
@endif
@section('scripts') @endsection @endsection