@extends('layouts.frontend.app') @section('content')

Thank you !

Your order has been received.

  • Order Number: {{$order->order_number}}
  • Date: {{ date('Y-m-d')}}
  • Total: {{ isset($settings) ? $settings->currency_symbol ?? "Currency Not Set " : "Currency Not Set " }} {{$order->grandtotal}}
  • Payment Method: {{$order->payment->type}}

Pay with cash upon delivery.

Order Details

@foreach($order_products as $product) @endforeach
Product Total
{{$product->product->name}} × {{$product->qty}} {{$product->product->sellingPrice * $product->qty}}
Subtotal: {{ isset($settings) ? $settings->currency_symbol ?? "Currency Not Set " : "Currency Not Set " }} {{$order->subtotal}}
Discount: {{ isset($settings) ? $settings->currency_symbol ?? "Currency Not Set " : "Currency Not Set " }} {{$order->total_discount}}
Delivery Charge: {{ isset($settings) ? $settings->currency_symbol ?? "Currency Not Set " : "Currency Not Set " }} {{$order->delivery_charge}}
Payment Method: {{$order->payment->type}}
Total: {{ isset($settings) ? $settings->currency_symbol ?? "Currency Not Set " : "Currency Not Set " }} {{$order->grandtotal}}
@endsection