Skip to main content

Dashboard

Welcome back! Here's what's happening with your SaaS business today.

Monthly Revenue

Revenue Gauge

$24,500

+12%

vs last month

Active Subscribers

Subscribers Gauge

1,247

+8%

vs last month

Churn Rate

Churn Rate Gauge

2.4%

+0.3%

vs last month

Conversion Rate

Conversion Metrics

3.2%

+0.5%

vs last month

Revenue Trend

Subscriber Growth

Recent Activity

Activity Log

New subscription from John Smith

Pro Plan - $29/month

2 min ago

Payment received

49.00 from Sarah Johnson

15 min ago

Subscription cancelled

Basic Plan - Mike Wilson

1 hour ago

New trial started

Enterprise Plan - TechCorp Inc.

3 hours ago

Quick Actions

+ value.toLocaleString(); } } }, x: { grid: { display: false } } } } }); // Subscriber Chart const subscriberCtx = document.getElementById('subscriberChart').getContext('2d'); new Chart(subscriberCtx, { type: 'bar', data: { labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'], datasets: [{ label: 'New Subscribers', data: [85, 92, 108, 125, 134, 147], backgroundColor: '#10B981', borderRadius: 4 }] }, options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { display: false } }, scales: { y: { beginAtZero: true, grid: { color: '#F3F4F6' } }, x: { grid: { display: false } } } } });

Customers

Manage your customer base and track subscription status.

Total Customers

Subscription Cubes

1,247

+12%

vs last month

Active Subscriptions

Mail Envelopes

1,089

+8%

vs last month

Trial Users

Order Sign

158

+15%

vs last month

Churned This Month

Coca Cola Sign

29

+3

vs last month

Customer List

Super Euro
Customer Plan Status MRR Join Date Actions
Avatar
John Smith
john@example.com
Pro Active $29.00 Jan 15, 2024
Avatar
Sarah Johnson
sarah@company.com
Enterprise Active 49.00 Dec 8, 2023
Avatar
Mike Wilson
mike@startup.io
Basic Trial $0.00 Feb 1, 2024
Avatar
Emma Davis
emma@design.co
Pro Cancelled $0.00 Nov 20, 2023

Showing 1 to 4 of 1,247 customers

Subscriptions

Manage subscription plans and track recurring revenue.

Monthly Recurring Revenue

Payment Check

$24,500

+12%

vs last month

Active Subscriptions

Payment Device

1,089

+8%

vs last month

Average Revenue Per User

Blue Sign

$22.50

+3%

vs last month

Monthly Churn Rate

Dollar Bills

2.4%

+0.3%

vs last month

Basic Plan

$9/month
Active Subscribers 324
Monthly Revenue $2,916
Conversion Rate 4.2%

Pro Plan

$29/month
Active Subscribers 587
Monthly Revenue 7,023
Conversion Rate 3.8%

Enterprise Plan

49/month
Active Subscribers 178
Monthly Revenue $26,522
Conversion Rate 2.1%

Revenue by Plan

Digital Device

Recent Subscription Activity

New Pro subscription

John Smith upgraded from Basic

5 min ago

Enterprise trial started

TechCorp Inc. - 14-day trial

1 hour ago

Subscription cancelled

Basic Plan - Mike Wilson

3 hours ago

Payment successful

Enterprise Plan - 49.00

6 hours ago

Payment failed

Pro Plan - Card expired

8 hours ago
+ context.parsed.toLocaleString(); } } } } } }); // Modal functions function openCreatePlanModal() { const modal = document.getElementById('createPlanModal'); modal.classList.remove('hidden'); modal.setAttribute('aria-hidden', 'false'); document.body.style.overflow = 'hidden'; } function closeCreatePlanModal() { const modal = document.getElementById('createPlanModal'); modal.classList.add('hidden'); modal.setAttribute('aria-hidden', 'true'); document.body.style.overflow = 'auto'; } function editPlan(planType) { const modal = document.getElementById('editPlanModal'); const content = document.getElementById('editPlanContent'); const planData = { 'basic': { name: 'Basic Plan', price: '9', cycle: 'Monthly' }, 'pro': { name: 'Pro Plan', price: '29', cycle: 'Monthly' }, 'enterprise': { name: 'Enterprise Plan', price: '149', cycle: 'Monthly' } }; const plan = planData[planType]; content.innerHTML = `
$
`; modal.classList.remove('hidden'); modal.setAttribute('aria-hidden', 'false'); document.body.style.overflow = 'hidden'; } function closeEditPlanModal() { const modal = document.getElementById('editPlanModal'); modal.classList.add('hidden'); modal.setAttribute('aria-hidden', 'true'); document.body.style.overflow = 'auto'; } // Close modals on outside click document.getElementById('createPlanModal').addEventListener('click', function(e) { if (e.target === this) { closeCreatePlanModal(); } }); document.getElementById('editPlanModal').addEventListener('click', function(e) { if (e.target === this) { closeEditPlanModal(); } }); // Close modals on ESC key document.addEventListener('keydown', function(e) { if (e.key === 'Escape') { closeCreatePlanModal(); closeEditPlanModal(); } });

Analytics

Track performance metrics and gain insights into your SaaS business.

Total Revenue

Revenue Analytics

47,250

+18%

vs previous period

User Growth

User Growth

2,847

+24%

new users this month

Conversion Rate

Conversion Analytics

4.2%

+0.8%

trial to paid conversion

Customer LTV

Customer Value

,247

+12%

average lifetime value

Revenue Trend

User Acquisition

Traffic Sources

Organic Search
42%
Direct
28%
Social Media
18%
Referral
12%

Most Used Features

Dashboard
87%
Reports
73%
Analytics
65%
Integrations
42%

Performance Insights

Performance Dashboard
Revenue Growth

18% increase in monthly revenue

User Engagement

Average session time: 12m 34s

Attention Needed

Churn rate slightly increased

Cohort Analysis

Cohort Month 0 Month 1 Month 2 Month 3 Month 4 Month 5
Jan 2024 100% 87% 78% 72% 68% 65%
Feb 2024 100% 89% 81% 75% 71% -
Mar 2024 100% 91% 84% 78% - -
+ (value / 1000) + 'K'; } } }, x: { grid: { display: false } } } } }); // User Acquisition Chart const userAcquisitionCtx = document.getElementById('userAcquisitionChart').getContext('2d'); new Chart(userAcquisitionCtx, { type: 'bar', data: { labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'], datasets: [{ label: 'New Users', data: [1850, 2120, 2340, 2580, 2720, 2847], backgroundColor: '#10B981', borderRadius: 4 }] }, options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { display: false } }, scales: { y: { beginAtZero: true, grid: { color: '#F3F4F6' } }, x: { grid: { display: false } } } } }); // Modal functions function openReportModal() { const modal = document.getElementById('reportModal'); modal.classList.remove('hidden'); modal.setAttribute('aria-hidden', 'false'); document.body.style.overflow = 'hidden'; } function closeReportModal() { const modal = document.getElementById('reportModal'); modal.classList.add('hidden'); modal.setAttribute('aria-hidden', 'true'); document.body.style.overflow = 'auto'; } // Close modal on outside click document.getElementById('reportModal').addEventListener('click', function(e) { if (e.target === this) { closeReportModal(); } }); // Close modal on ESC key document.addEventListener('keydown', function(e) { if (e.key === 'Escape') { closeReportModal(); } });

Billing

Manage payments, invoices, and billing settings for your SaaS business.

Total Revenue

Revenue Book

47,250

+18%

this month

Outstanding Invoices

Payment Card

2,450

23 invoices

pending payment

Failed Payments

Payment Status

$2,890

8 failed

requires attention

Success Rate

Visa Card

96.2%

+1.2%

payment success

Recent Transactions

Customer Amount Status Date Actions
Avatar
John Smith
Pro Plan
$29.00 Paid Feb 15, 2024
Avatar
Sarah Johnson
Enterprise Plan
49.00 Pending Feb 14, 2024
Avatar
Mike Wilson
Basic Plan
$9.00 Failed Feb 13, 2024

Payment Methods

Payment Methods
VISA

Credit Cards

67% of payments

$98,450
PP

PayPal

23% of payments

$33,800
ACH

Bank Transfer

10% of payments

5,000

Revenue Overview

Outstanding Invoices

Invoice # Customer Amount Due Date Status Actions
#INV-001 TechCorp Inc. 49.00 Feb 20, 2024 Overdue
#INV-002 StartupXYZ $29.00 Feb 25, 2024 Sent
+ (value / 1000) + 'K'; } } }, x: { grid: { display: false } } } } }); // Modal functions function openInvoiceModal() { const modal = document.getElementById('invoiceModal'); modal.classList.remove('hidden'); modal.setAttribute('aria-hidden', 'false'); document.body.style.overflow = 'hidden'; } function closeInvoiceModal() { const modal = document.getElementById('invoiceModal'); modal.classList.add('hidden'); modal.setAttribute('aria-hidden', 'true'); document.body.style.overflow = 'auto'; } function openPaymentModal() { const modal = document.getElementById('paymentModal'); modal.classList.remove('hidden'); modal.setAttribute('aria-hidden', 'false'); document.body.style.overflow = 'hidden'; } function closePaymentModal() { const modal = document.getElementById('paymentModal'); modal.classList.add('hidden'); modal.setAttribute('aria-hidden', 'true'); document.body.style.overflow = 'auto'; } // Close modals on outside click document.getElementById('invoiceModal').addEventListener('click', function(e) { if (e.target === this) { closeInvoiceModal(); } }); document.getElementById('paymentModal').addEventListener('click', function(e) { if (e.target === this) { closePaymentModal(); } }); // Close modals on ESC key document.addEventListener('keydown', function(e) { if (e.key === 'Escape') { closeInvoiceModal(); closePaymentModal(); } });

Settings

Configure your SaaS application preferences and system settings.

Company Buildings

Company Information

Update your business details

Configuration Documents

Application Preferences

Customize your app experience

Receive email updates about your account

Get text messages for important updates