mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 04:14:04 +00:00
11 lines
169 B
PHP
11 lines
169 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SettingCredit extends Model
|
|
{
|
|
protected $fillable = ['rmb_credit_limit','usd_credit_limit'];
|
|
}
|