34 lines
616 B
PHP
34 lines
616 B
PHP
<?php
|
|
|
|
namespace App\Modules\VisaMasterPaymentOrder\Repositories;
|
|
|
|
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'),
|
|
];
|
|
}
|
|
}
|