@extends('layouts.main') @section('content')
Memproses booking...
{{ $venue['name'] }}

{{ $venue['name'] }}

{{ $venue['description'] ?? 'Tidak ada deskripsi.' }}

@if($venue['status'] === 'open') {{-- Venue sedang buka - tampilkan jam operasional --}}

Jam Operasional: {{ date('H:i A', strtotime($venue['open_time'])) }} - {{ date('H:i A', strtotime($venue['close_time'])) }}

@else {{-- Venue sedang tutup - tampilkan informasi penutupan --}}

Tutup Sementara - {{ $venue['close_reason'] }}

@endif

Lokasi Venue

{{ $venue['address'] }}

@auth
@endauth

Pilih Meja

@foreach ($venue['tables'] as $table)

{{ $table['name'] }} ({{ $table['brand'] }})

Rp. {{ number_format($table['price_per_hour'], 0, ',', '.') }} / jam

Pilih Jam Booking:

Pilih Durasi Main:

@if ($venue['status'] === 'open') @else @endif
@endforeach
@endsection