@extends('layouts.welcomelayouts.app') @section('title') Payment - {{$appSetting->h1}} | {{$appSetting->slogan}} @endsection @section('SEO') @endsection @push('css') @endpush @section('contents')
@include('layouts.welcomelayouts.topsidebarmenu')

Cart View Shipping & Billing Complete

@include('alerts.alerts') @foreach($order->items as $item) @endforeach
Products Image QTY Total
{{ $item->product_name }}
BDT {{ $item->final_price }}
{{ $item->total_quantity }} BDT {{ $item->product->final_price * $item->total_quantity }}

YOUR ORDER CODE: #{{ $order->id }} ({{ ucfirst($order->payment_status) }})


SubTotal BDT {{ $order->final_price }}
Delivery Charge BDT {{ $order->delivery_cost }}
Tax/Vat: (0 %) BDT 0
Discount BDT {{ $order->coupon_discount }}
Grand Totals BDT {{ $order->grand_total }}

Payment Method

Select Payment Method

My Balance Total (BDT)

{{ Auth::user()->balance ?: 0.00 }} @if(Auth::user()->balance > $order->grand_total)
Pay Now From Your Wallet @else

Add Balance @endif

@endsection @push('js') {{-- --}} @endpush