Intelligence Summary
{{ $club->description ?? 'This premier establishment offers state-of-the-art facilities for athletes. Known for its perfect lighting and professional turf quality.' }}
OPENING
{{ \Carbon\Carbon::parse($club->opening_time)->format('h:i A') }}
CLOSING
{{ \Carbon\Carbon::parse($club->closing_time)->format('h:i A') }}
DURATION
{{ $club->slot_duration }} MINS
{{ $club->description ?? 'No detailed logistics parameters provided for this node.' }}
Available Amenities
@forelse($club->amenities as $amenity)
{{ $amenity->name }}
@empty
No specialized assets identified for this node.
@endforelse Deployment Schedule
@for($i = 0; $i < 7; $i++)
@php $date = \Carbon\Carbon::today()->addDays($i); @endphp
{{ $date->format('D') }}
{{ $date->format('d') }}
@endfor
@foreach($club->courts as $index => $court)
@endforeach
{{ $court->name }} {{ $court->surface }}
@forelse($club->getAvailableSlots(\Carbon\Carbon::today(), $court) as $slot)
{{ $slot['time'] }}
@empty
No slots available for development on this date.
@endforelse User Feedback
@forelse($club->reviews as $review)
{{ $review->user->name }}
{{ $review->comment }}