@extends('layouts.superadmin') @section('title', 'Plans') @section('page-title', 'Manage Plans') @section('content')
+ Create New Plan
@forelse($plans as $plan) @empty @endforelse
Plan Name Monthly Yearly Users Tenants Status Actions

{{ $plan->name }}

{{ $plan->slug }}

@if($plan->is_popular)Popular@endif
₹{{ number_format($plan->price_monthly, 0) }} ₹{{ number_format($plan->price_yearly, 0) }} {{ $plan->max_users }} {{ $plan->tenants_count }} {{ $plan->is_active?'Active':'Inactive' }}
Edit
@csrf @method('DELETE')
No plans yet. Create your first plan.
@endsection