@extends('adminsection.layouts.master') @section('title') Booking List || @parent @stop @section('page-title') Booking List @stop @section('page-header-actions') Print Invoice @stop @section('main-content')

Booking - {{$order->id}}

Hello, {{title_case($order->customer_name)}}.

Thank you for shopping from our store and for your order.

Invoice #{{$order->invoice_no}}

{{carbonDate($order->created_at, 'y-m-d')}}

@foreach($order_items as $item) @endforeach
Item Quantity Others Price Days Subtotal
{{$item->item_name}}
@if($item->hotel_name) {{$item->hotel_name}} @endif
{{$item->quantity}} @if($item->extra_bed_quantity > 0) BDT {{$item->extra_bed_quantity * $item->extra_bed_price}} ({{$item->extra_bed_quantity}} Extra Bed) @else N/A @endif @if($item->hotel_name) {{dateDifference($item->from, $item->to)}} @else - @endif BDT {{$item->total}}

Subtotal

Grand Total (Incl.Tax)

BDT {{$order->net_total}}

BDT {{$order->net_total}}

Billing Information

{{title_case($order->customer_name)}}
{{$order->address}}
{{$order->customer_email}}
Tel: {{$order->customer_phone}}

Payment Method

Credit Card
Credit Card Type: Visa
Transaction ID: #0009324670

@stop @section('js') @parent @stop