loan orders

This commit is contained in:
2024-09-23 23:39:08 +05:00
parent 2b3d6fd5da
commit ace16087a7
10 changed files with 543 additions and 153 deletions

View File

@@ -16,4 +16,12 @@ class LoanTypeRepo
{
return LoanType::where('active', true)->pluck('name', 'id');
}
/**
* Loan type guarantor id
*/
public static function loanTypeGuarantorId(): int
{
return 2;
}
}