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

Secure Payment

Complete your PayPal payment

PayPal Checkout

You will be redirected to PayPal to securely complete your payment.

Secure Payment: You will be redirected to PayPal's secure payment 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