@extends('layouts.app') @section('title', 'Subscription Plans & Pricing') @section('content')

Subscription Plans & Pricing

Configure commercial SaaS subscription plans, branch limits, user limits, and pricing.

+ New Plan
@foreach($plans as $plan)

{{ $plan->name }}

{{ $plan->slug }}

{{ $plan->description }}

AED {{ number_format($plan->price_monthly, 0) }} / month
Max Branches: {{ $plan->max_branches }}
Max ERP Users: {{ $plan->max_users }}
Storage GB: {{ $plan->max_storage_gb }} GB
AI Credits: {{ number_format($plan->monthly_ai_credits) }}
WhatsApp Pack: {{ number_format($plan->monthly_whatsapp_messages) }}
{{ $plan->is_active ? 'Active Plan' : 'Inactive Plan' }} Edit Plan
@endforeach
@endsection