@extends('layouts.public') @section('title', 'One Page Checkout') @section('content')

One Page Checkout

Domain + Hosting + Signup + Payment — in a single flow.

@csrf
1) Choose Hosting Plan
@foreach($plans as $plan)
@endforeach
2) Domain
Add domain once — it stays selected.
@guest
3) Create Your Account
After signup, your unique Support PIN will be shown in your billing dashboard for live chat verification.
@endguest
4) Payment
@if(empty($gateways))
No payment gateways are configured. Please configure at least one gateway from Admin → Plugins.
@else
@foreach($gateways as $idx => $gw)
@endforeach
@foreach($gateways as $gw) @php $fields = $gw->checkoutFields(); @endphp @endforeach
If you select PayPal or Stripe, you will be redirected to complete payment and return automatically.
@endif
Checkout Notes
  • One page checkout: select plan, add domain, create account, and pay.
  • After payment, you will be redirected to your Client Area automatically.
  • If payment fails, you can retry from your Invoice page.
  • Payment gateways and automations can be extended via Plugins.
TLD Pricing (Yearly)
@foreach($tlds as $tld)
{{ $tld->tld }}
PKR {{ number_format((float)$tld->price_yearly, 0) }}
@endforeach
@endsection