@extends('frontend.layouts.app') @section('title', 'Venues & Events | CCULB Resort') @section( 'meta_description', 'Explore elegant indoor and outdoor venues at CCULB Resort for weddings, corporate events, celebrations and memorable gatherings.' ) @section('content') {{-- Hero --}}
Exceptional Event Spaces

Remarkable Venues for Memorable Occasions

Discover thoughtfully designed indoor and outdoor spaces for weddings, celebrations, corporate events and private gatherings.

Explore Venues
{{-- Filters --}}
Browse Event Spaces

Find Your Ideal Venue

{{ $venues->total() }} {{ Str::plural( 'venue', $venues->total() ) }} available
All Venues @foreach($venueTypes as $venueType) {{ $venueType }} @endforeach
{{-- Listing --}}
@if($selectedType)
Showing {{ $selectedType }} venues
Clear Filter
@endif @if($venues->count())
@foreach($venues as $venue) @php $facilities = collect( $venue->facilities ?? [] ) ->filter() ->take(4); $openingTime = $venue->opening_time ? \Carbon\Carbon::parse( $venue->opening_time )->format('g:i A') : null; $closingTime = $venue->closing_time ? \Carbon\Carbon::parse( $venue->closing_time )->format('g:i A') : null; @endphp
@if($venue->featured_image) {{ $venue->name }} @else
CCULB Resort
@endif
@if($venue->venue_type) {{ $venue->venue_type }} @endif @if($venue->is_featured) Featured @endif
@if($venue->small_title) {{ $venue->small_title }} @endif

{{ $venue->name }}

@if( $venue->short_description || $venue->description )

{{ Str::limit( strip_tags( $venue ->short_description ?: $venue ->description ), 145 ) }}

@endif
Guest Capacity @if( $venue->minimum_guests !== $venue->maximum_guests ) {{ number_format( $venue ->minimum_guests ) }} – @endif {{ number_format( $venue ->maximum_guests ) }} Guests
@if($venue->venue_size)
Venue Size {{ $venue ->venue_size }}
@endif @if( $openingTime || $closingTime )
Operating Hours @if( $openingTime && $closingTime ) {{ $openingTime }} – {{ $closingTime }} @elseif($openingTime) From {{ $openingTime }} @else Until {{ $closingTime }} @endif
@endif
@if($facilities->isNotEmpty())
    @foreach( $facilities as $facility )
  • {{ $facility }}
  • @endforeach
@endif
@endforeach
@if($venues->hasPages())
{{ $venues->links() }}
@endif @else
New Spaces Coming Soon

No Venue Available

No active venue is currently available under this category. Explore all venues or contact our team to plan your event.

@if($selectedType) View All Venues @endif Contact Our Team
@endif
{{-- CTA --}}
Your Event, Your Way

Let Us Create Your Perfect Occasion

Share your event requirements with our team and let us prepare a tailored resort experience.

Plan Your Event
@endsection @push('styles') @endpush