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

@@ -16,6 +16,7 @@ return new class extends Migration
$table->string('unique_id')->nullable()->unique();
$table->string('type')->nullable();
$table->string('passport_name')->nullable();
$table->string('passport_surname')->nullable();
$table->string('phone')->nullable();

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