@extends('layouts.dashboard') @section('title', 'Subscription Plans') @section('header', 'Subscription Plan Management') @section('sidebar') @include('super-admin.partials.sidebar') @endsection @section('content')

Subscription Plans

Manage subscription plans and pricing

Create Plan
@forelse($plans as $plan) @empty @endforelse
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
View Edit
@csrf @method('DELETE')

No subscription plans found

Create your first plan
@endsection