diff --git a/app/Http/Controllers/BiayaKartuController.php b/app/Http/Controllers/BiayaKartuController.php index d40167e..e1d3075 100644 --- a/app/Http/Controllers/BiayaKartuController.php +++ b/app/Http/Controllers/BiayaKartuController.php @@ -67,8 +67,11 @@ { return Atmcard::where('crsts', 1) ->whereNotNull('accflag') + ->where('accflag', '!=', '') ->whereNotNull('branch') + ->where('branch', '!=', '') ->whereNotNull('currency') + ->where('currency', '!=', '') ->whereIn('ctdesc', array_keys(self::DEFAULT_FEES)) ->get(); } diff --git a/routes/web.php b/routes/web.php index e75ffdb..6296da8 100644 --- a/routes/web.php +++ b/routes/web.php @@ -1,7 +1,8 @@