Item multiple tax added

This commit is contained in:
Cüneyt Şentürk
2020-12-08 13:30:06 +03:00
parent 02e73f9ebe
commit 032555507b
9 changed files with 123 additions and 5 deletions

View File

@ -0,0 +1,25 @@
<?php
namespace App\Models\Common;
use App\Abstracts\Model;
use Bkwld\Cloner\Cloneable;
class ItemTax extends Model
{
use Cloneable;
protected $table = 'item_taxes';
/**
* Attributes that should be mass-assignable.
*
* @var array
*/
protected $fillable = ['company_id', 'item_id', 'tax_id'];
public function tax()
{
return $this->belongsTo('App\Models\Setting\Tax')->withDefault(['name' => trans('general.na'), 'rate' => 0]);
}
}