Exemplo n.º 1
0
 /**
  * Calculate the tax of the product
  *
  * @return Money
  */
 protected function calculateTax()
 {
     if ($this->taxable) {
         $total = $this->value->subtract($this->discount);
         return $total->multiply($this->taxRate / 100);
     }
     return Money::init(0, $this->currency);
 }