@extends('layouts.dashboard') @section('title', 'Subscription Plans') @section('header', 'Subscription Plan Management') @section('sidebar') @include('super-admin.partials.sidebar') @endsection @section('content')
Manage subscription plans and pricing
| Plan | Description | Price | Interval | Limits | Status | Subscriptions | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $plan->name }}
{{ $plan->slug }}
|
{{ Str::limit($plan->description ?? 'No description', 50) }}
|
{{ number_format($plan->price, 0) }}
{{ $plan->currency }}
|
{{ $plan->interval }} |
Properties: {{ $plan->properties_limit ?? '∞' }}
Users: {{ $plan->users_limit ?? '∞' }}
|
{{ $plan->is_active ? 'Active' : 'Inactive' }} |
{{ $plan->subscriptions_count ?? 0 }}
active
|
|
|
No subscription plans found Create your first plan |
|||||||