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