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 ?? ''}}
{{ $order->created_at->format('D d m Y') }}
{{--| 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()}} | |
| @php $shipping_charge=DB::table('shippings')->where('id',$order->shipping_id)->pluck('price'); @endphp | Shipping: | ${{number_format($shipping_charge[0],2)}} |
| Total: | ${{number_format($order->total_amount,2)}} |