@extends('master-user') @section('content')

Checkout

@if(!empty($pendingTransaction))
Important: You already have a transaction in progress. We recommend to wait until it gets success/fail, before making any further payment attempt.
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('error'))
{{ session('error') }}
@endif
@if (session('success'))
{{ session('success') }}
@endif
@csrf
These details will be used while generating Invoice.
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('phone') {{ $message }} @enderror
@error('address') {{ $message }} @enderror
@error('city') {{ $message }} @enderror
@error('state') {{ $message }} @enderror
@error('pincode') {{ $message }} @enderror
@error('gst_number') {{ $message }} @enderror

Plan Summary

@if($plan->allow_custom_headers) @endif
Plan Name {{ $plan->name }}
Price Rs. {{ number_format($plan->price) }}
No. of Short URLs {!! !empty($plan->max_short_urls) ? moneyFormatIndia($plan->max_short_urls) : 'Unlimited' !!}
Custom Prefixes/Headers
@if($taxes['total_tax'] > 0)
Taxes @php $taxComponents = []; if (isset($taxes['igst'])) $taxComponents[] = 'IGST'; if (isset($taxes['sgst'])) $taxComponents[] = 'SGST'; if (isset($taxes['cgst'])) $taxComponents[] = 'CGST'; @endphp ({{ implode('+', $taxComponents) }}) Rs. {{ number_format($taxes['total_tax'], 2) }}
Total Payable Rs. {{ number_format($totalAmount, 2) }}
@endif
@if(!empty($pendingTransaction)) @endif
@endsection @push('post_js') @endpush