payment api
This commit is contained in:
20
app/Models/PaymentsMethods.php
Normal file
20
app/Models/PaymentsMethods.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?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'
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user