@extends('layouts.dashboard') @section('title', 'Manage Subscription Plans') @section('content')

Subscription Plans

Manage all SaaS pricing tiers, limits, and features.

Create New Plan
@forelse($plans as $plan) @empty @endforelse
Plan Details Pricing Limits (Jobs / Resumes) Target Status Action
{{ $plan->name }} @if($plan->badge) {{ $plan->badge }} @endif {{ $plan->description ?? 'No description' }}
₹{{ number_format($plan->price) }} /mo ₹{{ number_format($plan->annual_price) }} /yr
{{ $plan->job_posts == 0 ? 'Unlimited' : $plan->job_posts }} Jobs {{ $plan->resume_views_limit == 0 ? 'Unlimited' : $plan->resume_views_limit }} Resumes
{{ ucfirst($plan->plan_type) }} @if($plan->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
No Subscription Plans Found

Create your first SaaS plan to start enforcing subscriptions.

@endsection