@php
$statuses = ['Pending', 'Confirmed', 'Completed', 'Cancelled'];
$artists = [
'John Mayer', 'Taylor Swift', 'Ed Sheeran', 'Adele',
'Bruno Mars', 'Ariana Grande', 'Justin Bieber', 'Dua Lipa',
'The Weeknd', 'Billie Eilish'
];
$locations = [
'Jakarta Convention Center', 'Bali International Convention Centre',
'ICE BSD City', 'Sentul International Convention Center',
'Gelora Bung Karno', 'Ancol Beach City', 'Trans Studio Bandung',
'Candi Borobudur', 'Prambanan Temple', 'Taman Mini Indonesia Indah'
];
$eventTypes = [
'Music Festival', 'Corporate Event', 'Wedding', 'Birthday Party',
'Charity Concert', 'Product Launch', 'Award Show', 'University Event',
'New Year Celebration', 'Anniversary'
];
// Generate random data for this specific booking to pre-fill the form
$bookingId = 'BK-' . (1000 + (int)$id);
$randomDate = \Carbon\Carbon::now()->addDays(rand(1, 60));
$randomStatus = $statuses[array_rand($statuses)];
$randomArtist = $artists[array_rand($artists)];
$randomLocation = $locations[array_rand($locations)];
$randomEvent = $eventTypes[array_rand($eventTypes)] . ' ' . date('Y');
$randomFee = rand(10, 100) * 1000000;
$randomDeposit = $randomFee * 0.3;
$randomDuration = rand(1, 4);
$randomAttendees = rand(100, 5000);
$randomOrganizer = 'PT ' . str_replace(' ', '', $randomEvent) . ' Indonesia';
$randomContactPerson = ['John Doe', 'Jane Smith', 'Robert Johnson', 'Emily Davis', 'Michael Brown'][array_rand(['John Doe', 'Jane Smith', 'Robert Johnson', 'Emily Davis', 'Michael Brown'])];
$randomContactPhone = '08' . rand(10, 99) . rand(1000, 9999) . rand(1000, 9999);
$randomContactEmail = strtolower(str_replace(' ', '', $randomContactPerson)) . '@example.com';
$randomTechReq = "Professional sound system with minimum 10,000 watts\nStage size minimum 8x6 meters\n4 wireless microphones (Shure SM58 or equivalent)\nIn-ear monitoring system for all band members\nLighting system with operator";
$randomHospReq = "Private dressing room with refreshments\nAccommodation for artist and team (" . rand(3, 8) . " rooms)\nTransportation from airport/hotel to venue\nMeals for artist and crew (" . rand(5, 15) . " people)\nSecurity personnel during performance";
@endphp