classify admin
This commit is contained in:
24
app/Models/PaymentConfiguration.php
Normal file
24
app/Models/PaymentConfiguration.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class PaymentConfiguration extends Model {
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'payment_method',
|
||||
'api_key',
|
||||
'secret_key',
|
||||
'webhook_secret_key',
|
||||
'currency_code',
|
||||
'status',
|
||||
'additional_data_1',
|
||||
'additional_data_2',
|
||||
'payment_mode',
|
||||
'username',
|
||||
'password'
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user