@extends('admin.master') @section('title') Order Confirmation @endsection @section('sideMenuTitle') Order Confirmation @endsection @section('pageTitle') @endsection @section('bodyContent')
@if(Session::has('message'))

{{Session::get('message')}}

@endif @if(Session::has('error'))

{{Session::get('error')}}

@endif @if ($errors->any())
@endif

Thank you for placing your order.

@foreach($cart["carttArr"] as $val) @endforeach
Serial # Product Unit Price({{$settings->currency_symbol}}) Qty Sub Total({{$settings->currency_symbol}}) Discount Grand Total({{$settings->currency_symbol}})
{{ $i++ }} {{$val["product_name"]}} {{$val["unit_price"]}} {{$val["qty"]}} {{$val["unit_price"] * $val["qty"]}} {{($val["discount_type"] == "fixed" ? $settings->currency_symbol : "" )}}{{$val["discount_value"]}}{{($val["discount_type"] == "percentage" ? "%" : "" )}} {{($val["unit_price"] * $val["qty"]) - ($val["discount_amount"]* $val["qty"])}}
Subtotal: {{$settings->currency_symbol}}{{$cart["subTotal"]}}
Discount Amount: {{$settings->currency_symbol}}{{$cart["totalDiscount"]}}
Delivery Charge: {{$settings->currency_symbol}}{{$cart["delivery_Charge"]}}
Grand Total: {{$settings->currency_symbol}}{{$cart["grandTotal"]}}
@endsection