@if ($type == 'vehicle')
@partial('basic-header', ['default' => 'rentals']);
@else
@partial('basic-header', ['default' => 'stays']);
@endif
{$name = str_replace('_', ' ', $name);}
1 Your {$type == 'property' ? 'room' : 'vehicle'} @hiddenInput('reservation-type', $type);
3 Complete
{$customerid = @@getCustomerId();} @hiddenInput('id', $id); @hiddenInput('type', $type); @hiddenInput('customerid', $customerid); @hiddenInput('hash', $hash); @hiddenInput('propertyid', $propertyid); @hiddenInput('couponid', ''); @hiddenInput('single_room_price', $single_room_price); {$singleDiscout = isset($single_discount_total) ? $single_discount_total : 0;} @hiddenInput('single_room_discount', $singleDiscout); @csrf;

Your booking details

Check-in

{$check_in_string}
@hiddenInput('checkin_string', $check_in_string); @hiddenInput('checkin', $checkin);

Check-out

{$check_out_string}
@hiddenInput('check_out_string', $check_out_string); @hiddenInput('checkout', $checkout);

Total length of stay:

{$period} night{$period > 1 ? 's' : ''}
@hiddenInput('period', $period); Traveling on different dates?
You selected:

{$name}

@hiddenInput('name', $name); {$history = str_replace('#choose-room', '&delete=yes#choose-room', $history);} Change your selection
@if ($hasRooms)
Room information:

{$roomInfo['rooms']} room{$roomInfo['rooms'] > 1 ? 's' : ''},

{$roomInfo['adults']} adult{$roomInfo['adults'] > 1 ? 's' : ''},

{$roomInfo['children']} child{$roomInfo['children'] > 1 ? 'ren' : ''}

@hiddenInput('rooms', $roomInfo['rooms']); @hiddenInput('adults', $roomInfo['adults']); @hiddenInput('children', $roomInfo['children']);
@endif

Coupon Discount

Your price summary

  • {str_replace('_', ' ', $name)} NGN {number_format($price, 0, '.', ',')} @hiddenInput('price', $price);
  • {$vat} % VAT NGN {number_format($vat_total, 0, '.', ',')} @hiddenInput('vat', $vat); @hiddenInput('vat_total', $vat_total);
  • @if ($hasDiscount)
  • {$discount} % Discount NGN {number_format($discount_total, 0, '.', ',')} @hiddenInput('discount', $discount); @hiddenInput('discount_total', $discount_total);
  • @endif @if (isset($prev_bal))
  • Prev Balance NGN {number_format($prev_bal, 0, '.', ',')}
  • @endif

Price

(Your booking total)

@if (isset($new_total))
@if (isset($from_account))

-NGN {number_format($new_total, 0, '.', ',')}

@else

NGN {number_format($new_total, 0, '.', ',')}

@endif
@hiddenInput('prev_total', $total); @else

NGN {number_format($total, 0, '.', ',')}

@endif @hiddenInput('total', $total);
@if (isset($from_account))

* Please keep in mind that you would not be charged for this booking.

@else

* Keep in mind that your card issuer may charge you a local transaction fee.

@endif
@if (!isset($from_account))

Your payment schedule

@if ($can_pay_online)

You will be charged a total fee of NGN {number_format($total, 0, '.', ',')}. See the supported payment methods offered by {ucfirst($property_name)}:
@if (is_array($property->rules->paymentMethods) or is_object($property->rules->paymentMethods)) @foreach($property->rules->paymentMethods as $method => $val) @if ($val == true) {ucfirst($method)} @endif @endfor @endif

@else

No payment today. You'll pay when you get to the property.

@endif @hiddenInput('pay_online', ($can_pay_online ? 'yes' : 'no'));
@else @hiddenInput('pay_online', ($can_pay_online ? 'yes' : 'no')); @endif

Enter your details

Almost done! Just fill in the * required info

Who are you booking for?

{$booking_for = @@post('booking_for');}

Are you traveling for work?

{$traveling = @@post('traveling');}
{$companies = app('query')->getCorporateCompanies();}

Who is paying?

{$paying = @@post('who_is_paying');} @foreach ($companies as $row) @endfor

{ucwords($property_name)} ({$name})

    @foreach ($features as $facility)
  • {ucfirst($facility)}
  • @endfor
{$getGuestEmail = ($booking_for == 'someone_else' ? 'style="display:block"' : 'style="display:none"');}

Special Requests

Please write your requests in English.
Special requests cannot be guaranteed – but the property will do its best to meet your needs.

@partial('modal-error-message'); @partial('page-loader');