| |
|
BRIK itt
Dear Admin,
We would like to inform you that a reservation has been cancelled. Below are the details of the cancelled booking:
{{-- --}}
Guest Details
| Guest Name: |
{{$guest->print_name}} |
| Email: |
{{$guest->email}} |
| Phone: |
{{$guest->mobile}} |
Booking Details
@foreach($bookingRequest->bookings as $booking)
| Check-in Date: |
{{date("d-m-Y", strtotime($booking->date_check_in))}} |
| Check-out Date: |
{{date("d-m-Y", strtotime($booking->date_check_out))}} |
| Number of Adults: |
{{$booking->adult}} |
| Number of Children: |
{{$booking->children}} |
| Unit: |
{{$booking->brik_unit->booking_portal_display_name}} |
| Payment Mode: |
{{$booking->pay_by}} |
@if ($booking->pay_by == 'Coin')
| Coin Deducted: |
{{$booking->pay_by == 'Coin' ? $booking->booking_cost_in_coin .' Coins' : 'INR '.$booking->booking_cost_in_rupee}} |
@else
| Amount Paid: |
{{$booking->pay_by == 'Coin' ? $booking->booking_cost_in_coin .' Coins' : 'INR '.$booking->net_payable_amount}} |
| Payment Status: |
@if($booking->booking_status == 'Active')
PAID
@elseif($booking->booking_status == 'Failed')
FAILED
@elseif($booking->booking_status == 'Cancel')
CANCELLED
@elseif($booking->booking_status == 'Initiated')
NOT PAID
@endif
|
@endif
@if ($booking->pay_by == 'Coin')
| Coin Refunded: |
{{$booking->refunded_coins .' Coins'}} |
@else
| Amount Refunded: |
{{ 'INR '.$booking->refunded_amount}} |
@endif
@endforeach
{{--
Best regards,
Brikitt --}}
|
|
|