Skip to content

Commit

Permalink
fixed relationships
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Jan 8, 2019
1 parent a844b7a commit e4b26cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Models/Setting/Tax.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ public function items()

public function bill_items()
{
return $this->hasMany('App\Models\Expense\BillItem');
return $this->hasMany('App\Models\Expense\BillItemTax');
}

public function invoice_items()
{
return $this->hasMany('App\Models\Income\InvoiceItem');
return $this->hasMany('App\Models\Income\InvoiceItemTax');
}

/**
Expand Down

0 comments on commit e4b26cd

Please sign in to comment.