@extends('layouts.super-admin', ['title' => 'Plans - Booklio Super Admin', 'pageTitle' => 'Plans', 'active' => 'plans']) @section('content')

Create, price, and manage CodeCanyon-ready SaaS subscription plans.

Create Plan
@if (session('status'))
{{ session('status') }}
@endif
@foreach ($plans as $plan)

{{ $plan->name }}

{{ $plan->monthlyDisplay() }}

per month

Billed monthly

{{ $plan->status_label }}

Trial days: {{ $plan->trial_days }}

Max staff: {{ $plan->max_staff ? number_format($plan->max_staff) : 'Unlimited' }}

Max services: {{ $plan->max_services ? number_format($plan->max_services) : 'Unlimited' }}

Appointments/month: {{ $plan->max_appointments_per_month ? number_format($plan->max_appointments_per_month) : 'Unlimited' }}

Subscriptions: {{ number_format($plan->subscriptions_count) }}

Edit Plan
@endforeach
@endsection