This commit is contained in:
2025-11-10 17:51:23 +05:00
parent 0779e4b9f6
commit c16bb98ed3
8 changed files with 91 additions and 45 deletions

View File

@@ -7,27 +7,4 @@ 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'),
];
}
}