@extends('layouts.app') @section('title', 'Checkout - BDCodeShop') @push('styles') @endpush @section('content')

Checkout

Review your product and pay securely using your wallet balance.

@if($product->thumbnail) {{ $product->name }} @else BC @endif
{{ $product->name }}
@if($product->category)
{{ $product->category }}
@endif @php $regularPrice = (float) $product->price; $salePrice = $product->discount_price !== null ? (float) $product->discount_price : $regularPrice; @endphp
৳{{ number_format($salePrice, 2) }} @if($product->discount_price !== null && $salePrice < $regularPrice) ৳{{ number_format($regularPrice, 2) }} SALE @endif
Coupon
Order Summary
Product price ৳0.00
Discount − ৳0.00
Total ৳0.00
Wallet Balance
Payment will be deducted from your BDCodeShop wallet.
Balance: ৳0.00
Checking
Insufficient Balance
Please add money to your wallet before purchasing this product.
@endsection @push('scripts') @endpush