29 lines
548 B
PHP
29 lines
548 B
PHP
<?php
|
|
|
|
namespace App\Modules\VisaMasterPaymentOrder\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $name
|
|
* @property string $display_name
|
|
* @property string $value
|
|
*/
|
|
class VisaMasterSettings extends Model
|
|
{
|
|
protected $table = 'visa_master_settings';
|
|
|
|
/**
|
|
* The possible types of settings.
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
public static function types(): array
|
|
{
|
|
return [
|
|
'payment_warning_text' => __('Warning text'),
|
|
];
|
|
}
|
|
}
|