payment api

This commit is contained in:
2024-04-22 11:26:00 +07:00
parent fe486b1593
commit a424721d89
9 changed files with 506 additions and 24 deletions

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