@if($order)

{{env('APP_NAME')}}

{{env('APP_ADDRESS')}}

Phone: {{env('APP_PHONE')}}

Email: {{env('APP_EMAIL')}}

Invoice to

{{$order->first_name}} {{$order->last_name}}

Email: {{$order->email}}

Phone: {{ $order->phone }}

Country: {{ $order->country }}

Language: {{ $order->language }}

NUmber of Adults: {{ $order->number_adult }}

Number of Children: {{ $order->number_child }}

Age Child: {{ $order->age_child }}

Date arrival: {{ $order->date_arrival }}

Total Stay: {{ $order->total_stay }}

Experience: {{ $order->experience }}

Accomodation: {{ $order->accomodation }}

Budget: {{ $order->budget }}

Things Likemost: {{ $order->like_most }}

Things Dislike Most: {{ $order->dislike_most }}

Brif Description: {{ $order->brief_descript }}

Tour: {{$order->tour->title ?? ''}}

{{--

Invoice #{{$order->order_number}}

--}}

{{ $order->created_at->format('D d m Y') }}

{{-- --}}
Order Details
@foreach($order->cart_info as $cart) @php $product=DB::table('products')->select('title')->where('id',$cart->product_id)->get(); @endphp @endforeach {{-- @if(!empty($order->coupon)) @endif --}} @php $shipping_charge=DB::table('shippings')->where('id',$order->shipping_id)->pluck('price'); @endphp
Product Quantity Total
@foreach($product as $pro) {{$pro->title}} @endforeach x{{$cart->quantity}} ${{number_format($cart->price,2)}}
Subtotal: ${{number_format($order->sub_total,2)}}
Discount: -{{$order->coupon->discount(Helper::orderPrice($order->id, $order->user->id))}}{{Helper::base_currency()}}
Shipping: ${{number_format($shipping_charge[0],2)}}
Total: ${{number_format($order->total_amount,2)}}

Thank you for your business !!

-----------------------------------

Authority Signature:
@else
Invalid
@endif