Compare commits

..

No commits in common. 'bfd5b57c03b7180df54b268c2e6fc676b3201b32' and 'ab366b6622da3d632952eeb33654c0c779931248' have entirely different histories.

  1. 15
      app/Http/Controllers/DashboardBoDController.php

15
app/Http/Controllers/DashboardBoDController.php

@ -288,7 +288,10 @@ class DashboardBoDController extends Controller
->pluck('id');
// arr overrun
if ($all_project) {
if ($role === 'Super Admin') {
$response['data']['overrun'] = Project::where('budget_health', 'overrun')
->count();
} elseif ($all_project == 'true') {
$response['data']['overrun'] = Project::whereIn('divisi_id', $divisi)
->where([['budget_health', 'overrun']])
->count();
@ -298,7 +301,10 @@ class DashboardBoDController extends Controller
->count();
}
// arr warning
if ($all_project) {
if ($role === 'Super Admin') {
$response['data']['warning'] = Project::where('budget_health', 'warning')
->count();
} elseif ($all_project == 'true') {
$response['data']['warning'] = Project::whereIn('divisi_id', $divisi)
->where([['budget_health', 'warning']])
->count();
@ -308,7 +314,10 @@ class DashboardBoDController extends Controller
->count();
}
// arr on-budget
if ($all_project) {
if ($role === 'Super Admin') {
$response['data']['on-budget'] = Project::where('budget_health', 'on-budget')
->count();
} elseif ($all_project == 'true') {
$response['data']['on-budget'] = Project::whereIn('divisi_id', $divisi)
->where([['budget_health', 'on-budget']])
->count();

Loading…
Cancel
Save