@extends('layouts.business') @section('title', 'Stripe Checkout - ' . $plan->name) @section('content')

Secure Payment

Redirecting to Stripe Checkout...

Stripe Checkout
Loading...

Preparing your secure payment page...

You will be redirected to Stripe Checkout automatically.

Secure Payment: You will be redirected to Stripe's secure hosted checkout page. Your payment information is encrypted and secure.
Order Summary

Plan

{{ $plan->name }}

Description

{{ $plan->description ?? 'Premium subscription plan' }}

Business

{{ $business->business_name }}

Price

AED {{ number_format($plan->price, 2) }}

Billing Cycle

Monthly

Total Amount

AED {{ number_format($plan->price, 2) }}

What's Included:

    @if($plan->max_venues)
  • {{ $plan->max_venues == -1 ? 'Unlimited' : $plan->max_venues }} Venue(s)
  • @endif @if($plan->max_offers)
  • {{ $plan->max_offers == -1 ? 'Unlimited' : $plan->max_offers }} Offer(s)
  • @endif @if($plan->max_staff)
  • {{ $plan->max_staff == -1 ? 'Unlimited' : $plan->max_staff }} Staff Member(s)
  • @endif
@endsection