@extends('layouts.dashboard') @section('title', 'Manage Subscription Plans') @section('content')
Manage all SaaS pricing tiers, limits, and features.
| 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 | |
No Subscription Plans FoundCreate your first SaaS plan to start enforcing subscriptions. |
|||||