This commit is contained in:
Jagad R R
2025-01-12 13:37:29 +07:00
parent 6efaa99220
commit deeb8c7a68
2 changed files with 31 additions and 6 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ class BudgetHelper
// Add the used budget per model for the specified month and year to the usedBudget array
$users = UserHasCabang::where('cabang_id', $cabang_id)->get();
$userIds = $users->pluck('user_id')->toArray();
$userIds = $users->pluck('user_id')->toArray();
$forms = FormHelper::getFormsByUserIds($userIds, $month, $year)->sortByDesc('tanggal')->sortByDesc('created_at');
$usedBudget += $forms->sum('approved_total');
}