@extends('front.layouts.app') @section('title', 'Checkout - Astrotalk') @section('content')

Secure Checkout

Complete your payment to add balance.

Order Summary

Package Amount ₹{{ number_format($package->amount, 2) }}
@php $taxAmount = 0; if ($package->is_taxable) { $taxAmount = ($package->amount * $package->tax_percentage) / 100; } $totalAmount = $package->amount + $taxAmount; @endphp @if($package->is_taxable)
Tax ({{ $package->tax_percentage }}% GST) + ₹{{ number_format($taxAmount, 2) }}
@endif
Total Payable ₹{{ number_format($totalAmount, 2) }}

Payment Method

@php $activeGateway = $settings['active_payment_gateway'] ?? 'manual'; @endphp @if($activeGateway === 'razorpay' && !empty($settings['razorpay_key']))
Razorpay

Razorpay Secure

Cards, UPI, NetBanking, Wallets

@elseif($activeGateway === 'paypal')
PayPal integration coming soon...
@elseif($activeGateway === 'stripe')
Stripe integration coming soon...
@else
Manual payment is active. Please contact support.
@endif

Why Recharge?

  • 100% Secure

    Your payment details are encrypted and safe.

  • Instant Credit

    Balance added to your wallet immediately.

  • @if($package->cashback_amount > 0)
  • Cashback Reward

    Get ₹{{ $package->cashback_amount }} cashback on this recharge.

  • @endif
@if($activeGateway === 'razorpay' && !empty($settings['razorpay_key'])) @endif @endsection