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

Checkout

Complete your subscription purchase

Order Summary
{{ $plan->name }}

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

@if($plan->price > 0)
AED {{ number_format($plan->price, 2) }}/month

Billed monthly

@else
FREE

No charge

@endif
What's Included:
@if($plan->max_venues)
{{ $plan->max_venues == -1 ? 'Unlimited' : $plan->max_venues }} {{ $plan->max_venues == 1 ? 'Venue' : 'Venues' }}
@endif @if($plan->max_offers)
{{ $plan->max_offers == -1 ? 'Unlimited' : $plan->max_offers }} {{ $plan->max_offers == 1 ? 'Offer' : 'Offers' }}
@endif @if($plan->max_staff)
{{ $plan->max_staff == -1 ? 'Unlimited' : $plan->max_staff }} {{ $plan->max_staff == 1 ? 'Staff Member' : 'Staff Members' }}
@endif
Business Information

Business Name

{{ $business->business_name ?? 'N/A' }}

Email

{{ $business->email ?? 'N/A' }}

@if($plan->price > 0)
@csrf
Select Payment Method
@if($stripeEnabled)
@endif @if($paypalEnabled)
@endif @if(!$stripeEnabled && !$paypalEnabled)
No payment methods are currently available. Please contact support.
@endif
@endif
Payment Summary

Plan Price

@if($plan->price > 0)

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

@else

FREE

@endif
@if($plan->price > 0)

Billing Cycle

Monthly

Tax (if applicable)

Calculated at checkout

@endif

Total Amount

@if($plan->price > 0)

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

@else

FREE

@endif
@if($plan->price > 0) @else @endif Back to Plans
Secure & Encrypted Your payment information is secure and encrypted.
@endsection