Add setting for taxrate and billingcharge

This commit is contained in:
weiweitoo
2018-07-20 18:47:19 +08:00
parent 4bb40e3643
commit 73c36dd8e3
14 changed files with 328 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class SettingBillingCharge extends Model
{
protected $fillable = ['billing_charge_rate'];
}