General Statistics
= $activeSubscriptions ?>
Active Subscriptions
= $totalCostPerMonth ?>= $symbol ?>
Monthly Cost
= $totalCostPerYear ?>= $symbol ?>
Yearly Cost
= $averageSubscriptionCost ?>= $symbol ?>
Average Monthly Subscription Cost
= $mostExpensiveSubscription ?>= $symbol ?>
Most Expensive Subscription Cost
= number_format($amountDueThisMonth, 2, ".", "") ?>= $symbol ?>
Amount due this month
Split Views
$category['name'],
"y" => $category["cost"],
];
}
}
$showCategoryCostGraph = count($categoryCost) > 1;
foreach ($memberCost as $member) {
if ($member['cost'] != 0) {
$memberDataPoints[] = [
"label" => $member['name'],
"y" => $member["cost"],
];
}
}
$showMemberCostGraph = count($memberCost) > 1;
if ($showMemberCostGraph) {
?>