visa master basic form

This commit is contained in:
2025-11-07 01:43:27 +05:00
parent 9be16228f7
commit 0779e4b9f6
2 changed files with 173 additions and 2 deletions

View File

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