28 lines
557 B
PHP
28 lines
557 B
PHP
<?php
|
|
/**
|
|
* TaxClass.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-07-21 18:39:28
|
|
* @modified 2022-07-21 18:39:28
|
|
*/
|
|
|
|
namespace Beike\Models;
|
|
|
|
class TaxClass extends Base
|
|
{
|
|
protected $fillable = ['title', 'description'];
|
|
|
|
public function taxRates()
|
|
{
|
|
return $this->belongsToMany(TaxRate::class, 'tax_rules');
|
|
}
|
|
|
|
public function taxRules()
|
|
{
|
|
return $this->hasMany(TaxRule::class);
|
|
}
|
|
}
|