wallet tron transactions
This commit is contained in:
20
app/Models/Wallet/Other/WalletSettingModel.php
Normal file
20
app/Models/Wallet/Other/WalletSettingModel.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models\Wallet\Other;
|
||||
|
||||
use App\Models\Wallet\Base\WalletBaseModel;
|
||||
|
||||
class WalletSettingModel extends WalletBaseModel
|
||||
{
|
||||
protected $table = 'wallet_setting';
|
||||
protected $primaryKey = 'id';
|
||||
protected $fillable = [
|
||||
'id',
|
||||
'name',
|
||||
'value',
|
||||
'remark',
|
||||
'created_at',
|
||||
'updated_at',
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user