Room : {{ $reservation->room->name }}
Names : {{ $reservation->first_name .' '. $reservation->last_name }}
Email : {{ $reservation->email }}
Phone Number : {{ $reservation->telephone }}
Residence : {{ $reservation->country .' - '. $reservation->city }}
Dates : {{ date('d M Y', strtotime($reservation->check_in)) }} - {{ date('d M Y', strtotime($reservation->check_out)) }}
Guests: {{ $reservation->adults }} Adults and {{ $reservation->children }} Children(s)
Total Price : @php $checkin = \Carbon\Carbon::parse($reservation->check_in); $checkout = \Carbon\Carbon::parse($reservation->check_out); $diff = $checkout->diffInDays($checkin); $total_price = $diff * $reservation->room->price; @endphp $ {{ number_format($total_price)}}
Special Requests : {{ $reservation->others }}