wip
This commit is contained in:
@@ -17,6 +17,9 @@ class LoanTypeRepo
|
||||
return LoanType::where('active', true)->pluck('name', 'id');
|
||||
}
|
||||
|
||||
/**
|
||||
* Only guarantor
|
||||
*/
|
||||
public static function onlyGuarantor(): Collection|array
|
||||
{
|
||||
return LoanType::where('active', true)->where('id', static::loanTypeGuarantorId())->pluck('name', 'id');
|
||||
|
||||
@@ -29,6 +29,11 @@ class OrderRepo
|
||||
*/
|
||||
public const CANCELLED = 'cancelled';
|
||||
|
||||
/**
|
||||
* Mobile device
|
||||
*/
|
||||
public const MOBILE_DEVICE = 'mobile';
|
||||
|
||||
/**
|
||||
* Default status value
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user