wip
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -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'),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user