diff --git a/app/Classes/General/Eloquent/Filters/HasPaymentStatusIn.php b/app/Classes/General/Eloquent/Filters/HasPaymentStatusIn.php index 18ba1201..3d17b04a 100644 --- a/app/Classes/General/Eloquent/Filters/HasPaymentStatusIn.php +++ b/app/Classes/General/Eloquent/Filters/HasPaymentStatusIn.php @@ -18,6 +18,6 @@ class HasPaymentStatusIn implements Filter { return $builder->whereHas('transactions', function($query) use($value) { return $query->where('transactions.type', TransactionType::PAYMENT)->where('transactions.status', $value); - }); + })->dd(); } }