@extends('layouts.public') @section('content')

Payment for Booking #{{ $booking->booking_code }}

Booking Summary
{{ $booking->touristAttraction->name }}

{{ $booking->visit_date->format('d M Y') }}

{{ $booking->number_of_tickets }} ticket(s)


Total Amount: Rp {{ number_format($booking->total_price, 0, ',', '.') }}
Payment Method
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
Bank Transfer
Transfer to our bank account
E-Wallet
GoPay, OVO, DANA
Credit Card
Visa, Mastercard
@csrf
Upload screenshot of your payment confirmation (JPG, PNG, max 2MB)
@error('payment_proof')
{{ $message }}
@enderror
Payment Summary
Booking Amount: Rp {{ number_format($booking->total_price, 0, ',', '.') }}
Payment Fee: Rp 0

Total Payment: Rp {{ number_format($booking->total_price, 0, ',', '.') }}
Back to Booking
@endsection