@extends('admin.layouts.app') @section('title', 'Rental Booking Details') @section('section')

User Booking Details

User Details

Name: {{ $booking->user->first_name ?? '' }}

Email: {{ $jsonContent['email'] ?? ''}}

Phone Number: {{ $jsonContent['phone_num'] ?? ''}}

Rental Details

Shows Name: {{ $booking->show_name ?? '' }}

@if($booking->rental->form_key === 'RENT THE SPACE')

Capacity: {{ $jsonContent['capacity'] ?? '' }} {{-- Capacity: {{ isset($rental->capacity) ? number_format($rental->capacity) : '' }}--}}

Price: {{ isset($booking->rental->price) ? number_format($booking->rental->price) : '' }}

@php if ($jsonContent !== null){ if (json_last_error() === JSON_ERROR_NONE && is_array($jsonContent)) $reasons = $jsonContent['reasons'] ?? []; echo "

Reason for Rental: " . implode(", ", $reasons) . "

"; } @endphp

What dates/ times are you looking for: Please list your top 3 times/ days : {{ $jsonContent['fav_time_first'] ?? '' }} , {{ $jsonContent['fav_time_second'] ?? '' }} , {{ $jsonContent['fav_time_third'] ?? '' }}

Non-Working day: {{ $jsonContent['non_workday'] ?? '' }}

We have two theaters. Downstairs seats 60-65 and upstairs seats 30-35. Are you open to either space? : {{ $jsonContent['preferred_space'] ?? '' }}

What tech requirements do you have for your rental ? : {{ $jsonContent['tech_req'] ?? '' }}

Have you used the Clubhouse before and if so in what capacity?: {{ $jsonContent['capacity'] ?? '' }}

Would this be a one time rental or recurring? If so how many rentals are you hoping for? : {{ $jsonContent['recurring'] ?? '' }}

Anything else we should know : {{ $jsonContent['anything'] ?? '' }}

@elseif($booking->rental->form_key === 'DO A ONE OFF SHOW')

Capacity: {{ $jsonContent['capacity'] ?? '' }} {{-- Capacity: {{ isset($rental->capacity) ? number_format($rental->capacity) : '' }}--}}

Price: {{ isset($booking->rental->price) ? number_format($booking->rental->price) : '' }}

@php if ($jsonContent !== null){ if (json_last_error() === JSON_ERROR_NONE && is_array($jsonContent)) $reasons = $jsonContent['shows'] ?? []; echo "

Type of show: " . implode(", ", $reasons) . "

"; } @endphp

What dates/ times are you looking for: Please list your top 3 times/ days : {{ $jsonContent['fav_time_first'] ?? '' }} , {{ $jsonContent['fav_time_second'] ?? '' }} , {{ $jsonContent['fav_time_third'] ?? '' }}

Are there any times/ days that absolutely do not work for you? : {{ $jsonContent['non_workday'] ?? '' }}

We have two theaters. Downstairs seats 60-65 and upstairs seats 30-35. Are you open to either space? : {{ $jsonContent['preferred_space'] ?? '' }}

What tech requirements do you have for your rental ? : {{ $jsonContent['tech_req'] ?? '' }}

Have you used the Clubhouse before and if so in what capacity?: {{ $jsonContent['capacity'] ?? '' }}

Will your show involve anything brought from outside of the theater such as instruments, large props, specialized equipment, food or drink services, amplified sound, live animals, glitter... {{ $jsonContent['theater'] ?? '' }}

Do you need additional time to set up and break down your one-off show.: {{ $jsonContent['additional'] ?? '' }}

Is this show a fundraiser?: {{ $jsonContent['fundraisers'] ?? '' }}

Anything else we should know : {{ $jsonContent['anything'] ?? '' }}

@elseif($booking->rental->form_key ==='DO A RECURRING SHOW')

Capacity: {{ $jsonContent['capacity'] ?? '' }} {{-- Capacity: {{ isset($rental->capacity) ? number_format($rental->capacity) : '' }}--}}

Price: {{ isset($booking->rental->price) ? number_format($booking->rental->price) : '' }}

@php if ($jsonContent !== null){ if (json_last_error() === JSON_ERROR_NONE && is_array($jsonContent)) $reasons = $jsonContent['shows'] ?? []; echo "

Type of show: " . implode(", ", $reasons) . "

"; } @endphp

What dates/ times are you looking for: Please list your top 3 times/ days : {{ $jsonContent['fav_time_first'] ?? '' }} , {{ $jsonContent['fav_time_second'] ?? '' }} , {{ $jsonContent['fav_time_third'] ?? '' }}

Are there any times/ days that absolutely do not work for you? : {{ $jsonContent['non_workday'] ?? '' }}

We have two theaters. Downstairs seats 60-65 and upstairs seats 30-35. Are you open to either space? : {{ $jsonContent['preferred_space'] ?? '' }}

What tech requirements do you have for your rental ? : {{ $jsonContent['tech_req'] ?? '' }}

Have you used the Clubhouse before and if so in what capacity?: {{ $jsonContent['capacity'] ?? '' }}

Will your show involve anything brought from outside of the theater such as instruments, large props, specialized equipment, food or drink services, amplified sound, live animals, glitter...: {{ $jsonContent['items-brought'] ?? '' }}

Do you need additional time to set up and break down your one-off show.: {{ $jsonContent['additional-time'] ?? '' }}

Anything else we should know : {{ $jsonContent['anything'] ?? '' }}

@php if ($jsonContent !== null){ if (json_last_error() === JSON_ERROR_NONE && is_array($jsonContent)) $reasons = $jsonContent['shows'] ?? []; echo "

Reasons: " . implode(", ", $reasons) . "

"; } @endphp {{--

User Request: {{ $booking->user_request ?? '' }}

--}} @else

Booking Details Not Found

@endif
@endsection