@extends('layouts.app') @section('content')

Subscription Plans

Choose the perfect plan for your business

@if ($currentSubscription = auth()->user()->subscriptions()->where('status', 'active')->first())

Current Subscription

{{ $currentSubscription->subscriptionPlan->name }} Plan

Renews on {{ $currentSubscription->current_period_end->format('d M Y') }}

Manage Subscription →
@endif
@foreach ($plans as $plan)

{{ $plan->name }}

{{ $plan->description }}

€{{ number_format($plan->price, 2) }} /month
  • {{ $plan->booking_limit ? $plan->booking_limit . ' bookings/month' : 'Unlimited bookings' }}
  • @if ($plan->includes_analytics)
  • Advanced Analytics
  • @endif @if ($plan->includes_priority_support)
  • Priority Support
  • @endif
  • {{ $plan->commission_rate }}% commission
  • @if ($plan->features) @foreach (json_decode($plan->features, true) as $feature)
  • {{ $feature }}
  • @endforeach @endif
@if ($plan->id === $currentSubscription?->subscription_plan_id) @else
@csrf
@endif
@endforeach

Frequently Asked Questions

Can I change my plan?

Yes, you can upgrade or downgrade your plan at any time. Changes will be reflected in your next billing cycle.

What payment methods do you accept?

We accept all major credit cards via Stripe. Your payment is secure and encrypted.

Can I cancel anytime?

Yes, you can cancel your subscription at any time. Your access continues until the end of your billing period.

Do you offer refunds?

We offer a 7-day money-back guarantee if you're not satisfied with your subscription.

@endsection