@extends('layouts.owner') @section('title', 'Owner Dashboard') @section('header_title', 'Establishment Performance') @section('content')
Total Managed Venues
{{ $clubs->count() }}
Confirmed Bookings
{{ $recentBookings->where('status', 'confirmed')->count() }}
Revenue (MTD)
Rs. {{ number_format($recentBookings->where('status', 'confirmed')->sum('total_price')) }}

Active Infrastructure Nodes

Initialize Node
@foreach($clubs as $club) @endforeach
Node Specification Deployment Address Capacity Metrics Network Status Command Center
{{ $club->name }}
{{ $club->sport->name ?? 'Multi-Discipline' }}
{{ Str::limit($club->address, 50) }}
{{ $club->courts->count() }} Performance Slates
{{ $club->is_active ? 'Online' : 'Pending Audit' }} Adjust

Live Occupancy Stream

@forelse($recentBookings as $booking) @empty @endforelse
Operator / Player Allocated Asset Timeline Slot Contract Value Encryption Status
{{ substr($booking->user->name, 0, 1) }}
{{ $booking->user->name }}
{{ $booking->court->name }}
{{ $booking->court->club->name }}
{{ \Carbon\Carbon::parse($booking->booking_date)->format('d M, Y') }}
{{ $booking->start_time }} - {{ $booking->end_time }}
Rs. {{ number_format($booking->total_price) }}
{{ $booking->status }}
No active occupancy streams detected.
@endsection