21 lines
373 B
PHP
Executable File
21 lines
373 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PaymentsMethods extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $table = 'payment_methods';
|
|
protected $fillable = [
|
|
'config_pmc_id',
|
|
'code',
|
|
'name',
|
|
'image',
|
|
'timeout',
|
|
'active'
|
|
];
|
|
}
|