Invoice

Order # {{ $booking->reference }}


Billed To:
{{ ucwords($booking->customer->name) }},
{{ $booking->customer->address }},
{{ $booking->customer->country }}.
{{--
--}} {{--Shipped To:
--}} {{--Jane Smith
--}} {{--1234 Main
--}} {{--Apt. 4B
--}} {{--Springfield, ST 54321--}} {{--
--}}
{{--
--}} {{--Payment Method:
--}} {{--Visa ending **** 4242
--}} {{--jsmith@email.com--}} {{--
--}}
Order Date:
{{ date_format($booking->created_at, 'M d Y') }}

Order summary

Item Rooms Totals
{{ $booking->room->property->actual_name.' - '.$booking->room->roomtype->name }} {{ $booking->rooms }} {{ number_format( $booking->amount, 2 ) }} {{ $booking->currency }}

Nightly details

@foreach($calendar as $key => $date) @endforeach
Date Price
{{ $date->date }} {{ number_format( $date->price, 2 ) }}