visa master basic form
This commit is contained in:
@@ -2,4 +2,32 @@
|
||||
|
||||
namespace App\Modules\VisaMasterPaymentOrder\Repositories;
|
||||
|
||||
class VisaMasterPaymentOrderRepository {}
|
||||
use App\Modules\Makeable;
|
||||
|
||||
class VisaMasterPaymentOrderRepository
|
||||
{
|
||||
use Makeable;
|
||||
|
||||
/**
|
||||
* Default status
|
||||
*/
|
||||
public static function defaultStatus(): string
|
||||
{
|
||||
return 'new';
|
||||
}
|
||||
|
||||
/**
|
||||
* Status values
|
||||
*
|
||||
* @return array<string, string>
|
||||
*/
|
||||
public static function statusValues(): array
|
||||
{
|
||||
return [
|
||||
'new' => __('New'),
|
||||
'in_progress' => __('In progress'),
|
||||
'completed' => __('Completed'),
|
||||
'rejected' => __('Rejected'),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user