@extends('admin.layout') @section('title', 'Manage Plans') @section('content')

Subscription Plans

Edit pricing, users, trial days — updates apply to new subscriptions

@foreach($plans as $plan) @endforeach
PlanTypePriceUsersTenantsActiveEdit
{{ $plan->name }} {{ ucfirst($plan->pricing_model) }} @if($plan->price_monthly > 0)${{ number_format($plan->price_monthly, 0) }}/mo @elseif($plan->price_yearly > 0)${{ number_format($plan->price_yearly, 0) }}/yr @else Free @endif {{ $plan->max_users }} {{ $plan->tenants_count }}
@csrf
@endsection