@extends('frontend.layouts.app') @section( 'title', ($venue->meta_title ?: $venue->name) . ' | CCULB Resort' ) @section( 'meta_description', $venue->meta_description ?: $venue->short_description ?: 'Discover ' . $venue->name . ' at CCULB Resort for memorable events, celebrations and gatherings.' ) @php $facilities = collect( $venue->facilities ?? [] )->filter()->values(); $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; /* * current_price accessor formatted string ফেরত দেয়। * তাই calculation/display-এর জন্য raw price field * ব্যবহার করা হচ্ছে। */ $displayPrice = $venue->has_discount ? $venue->discount_price : $venue->base_price; @endphp @section('content') {{-- Hero --}}
@if($venue->featured_image) {{ $venue->name }} @else
CCULB Resort
@endif
@if($venue->venue_type) {{ $venue->venue_type }} @endif @if($venue->is_featured) Featured Venue @endif
@if($venue->small_title) {{ $venue->small_title }} @endif

{{ $venue->name }}

@if($venue->short_description)

{{ $venue->short_description }}

@endif
{{-- Information Strip --}}
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
Starting From ৳{{ number_format( (float) $displayPrice, 0 ) }} @if($venue->has_discount) ৳{{ number_format( (float) $venue->base_price, 0 ) }} @endif
{{ $venue->button_text ?: 'Reserve This Venue' }}
{{-- Main Content --}}
Venue Overview

A Remarkable Space for Memorable Occasions

@if($venue->description)
{!! nl2br( e($venue->description) ) !!}
@elseif($venue->short_description)

{{ $venue->short_description }}

@else

Discover an elegant and thoughtfully arranged event space at CCULB Resort, designed for comfortable gatherings and memorable occasions.

@endif
@if($facilities->isNotEmpty())
Venue Amenities

Facilities & Features

{{ $facilities->count() }} {{ Str::plural( 'Facility', $facilities->count() ) }}
@foreach($facilities as $facility)
{{ $facility }}
@endforeach
@endif
{{-- Sidebar --}}
{{-- Related Venues --}} @if($relatedVenues->count()) @endif {{-- Bottom CTA --}}
Your Occasion Awaits

Ready to Plan an Exceptional Event?

Reserve this venue or contact our team for a tailored event experience at CCULB Resort.

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