@extends('layout.master',['title'=>'Thank you']) @section('content')

Thanks For order

Your Order Has Been Received

Our Sales Representative Will contact you, to ensure this order

Your Invoice Number is : #{{ $order->order_token }}

@php $total=0; @endphp @foreach ($order->order_list as $order_list)
Product Image

{{ $order_list->product->title }}

Color:

Price:

{{ $order_list->price }}

Size:

{{ $order_list->size }}

Quantity:

{{ $order_list->quantity }}
@php $total += $order_list->price*$order_list->quantity; @endphp @endforeach
Delivery Charge:
{{ $order->total_price }}
Total Price:
{{ $order->total_price+$total }}
Phone:
{{ $order->phone }}
Delivery Address:
{{ $order->address }}
Order Token :
{{ $order->order_token }}
@if (Auth::check()) @endif
@endsection @section('custom_css') @endsection