dashboard

This commit is contained in:
2019-08-06 02:13:07 -05:00
parent 4f5c2ef090
commit c45766f2d9

View File

@@ -167,7 +167,17 @@ class DashboardController extends Controller
],
]);
dd($openCount);
if($openCount == 0) {
$open = null;
}
if($approvedCount == 0) {
$approved = null;
}
if($deniedCount == 0) {
$denied = null;
}
return view('dashboard')->with('openCount', $openCount)
->with('approvedCount', $approvedCount)