loan order improvemetns

This commit is contained in:
2023-11-27 01:30:49 +05:00
parent 0fcdedbcc7
commit c50aae497e
10 changed files with 104 additions and 92 deletions

View File

@@ -12,6 +12,6 @@ class LoanTypeRepo
*/
public static function values(): Collection|array
{
return LoanType::pluck('name', 'id');
return LoanType::where('active', true)->pluck('name', 'id');
}
}