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

{{ $venue['name'] }}

{{ $venue['location'] ?? 'Lokasi tidak tersedia' }}

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

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:

@endforeach
@endsection