Fixed spelling mistake in array key
This commit is contained in:
parent
5dbc6a5be5
commit
de66fb2852
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue
Block a user