mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 12:34:13 +00:00
11 lines
160 B
PHP
11 lines
160 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SettingBillingCharge extends Model
|
|
{
|
|
protected $fillable = ['billing_charge_rate'];
|
|
}
|