Fixed spelling mistake in array key

This commit is contained in:
cp6 2023-08-18 19:26:00 +10:00
parent 5dbc6a5be5
commit de66fb2852
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ class HomeController extends Controller
'total_services' => $service_count['total'],
'total_inactive' => $pricing_breakdown['inactive_count'],
'total_cost_weekly' => number_format($pricing_breakdown['total_cost_weekly'], 2),
'total_cost_monthly' => number_format($pricing_breakdown['total_cost_montly'], 2),
'total_cost_monthly' => number_format($pricing_breakdown['total_cost_monthly'], 2),
'total_cost_yearly' => number_format($pricing_breakdown['total_cost_yearly'], 2),
'total_cost_2_yearly' => number_format(($pricing_breakdown['total_cost_yearly'] * 2), 2),
'due_soon' => $due_soon,

View File

@ -163,7 +163,7 @@ class Home extends Model
return array(
'total_cost_weekly' => $total_cost_weekly,
'total_cost_montly' => $total_cost_pm,
'total_cost_monthly' => $total_cost_pm,
'total_cost_yearly' => $total_cost_yearly,
'inactive_count' => $inactive_count,
);