@include('front.layouts.include.head')
{{ __('New Booking Order') }}
{{ $booking->reservation->name }}
{{ $booking->status == 0 ? __('Cancelled') : __('Active') }}
{{-- General Information--}}
{{ 'Added Date' }}
{{ date('d M Y', strtotime($booking->created_at)) }}
{{ 'Number of Participents' }}
{{ $booking->num_visitor }}
@foreach($booking->bookingLodgings as $bookingLodging)
{{ $bookingLodging->category->name }}
{{ __('Check In') }}
{{ date('d M Y', strtotime($bookingLodging->from)) }}
{{ __('Check Out') }}
{{ date('d M Y', strtotime($bookingLodging->to)) }}
{{ __('Adults') }}
{{ $bookingLodging->adults }}
{{ __('Children') }}
{{ $bookingLodging->children }}
@if($bookingLodging->dinner)
{{ __('With Dinner') }}
@else
{{ __('Without Dinner') }}
@endif
{{ __('Room Type') }}
{{ __('Room Class') }}
{{ __('Quantity') }}
@foreach ($bookingLodging->rooms as $room)
{{ $room->capacity }}
{{ $room->category->type[0] }}
{{ $room->quantity }}
@endforeach
@endforeach
@foreach ($booking->bookingActivities as $activity)
{{ $activity->category->name }}
{{ __('Booking Date') }}
{{ date('d M Y', strtotime($activity->attend_date)) }}
{{ __('Trial') }}
{{ $activity->activity->name }}
{{ __('Participents') }}
{{ $activity->participants }}
@endforeach
{{ __('Payment status') }}
{{ __('Action') }}
{{ __('Payment') }}
{{ __('Adding Date') }}
{{ date('d M Y', strtotime($booking->created_at)) }}
{{ __('Payment status') }}
{{ __('Sucessful') }}
{{ __('The Royal Society for the Conservation of Nature') }}