LaravelShoppingcart icon indicating copy to clipboard operation
LaravelShoppingcart copied to clipboard

Tax Queries

Open stezam opened this issue 2 years ago • 1 comments

Dear Sir, I need some help please.

  1. Can the tax be dynamic since not all products are charged with the same tax amount.
  2. I would like to display the tax amount in the cart row, can it be done?

Thank you

stezam avatar May 17 '22 08:05 stezam

  1. Yes but not with the trait, got to do it manually on the CartItem https://github.com/Crinsane/LaravelShoppingcart/blob/f460ab7312cce32cb428cf39a500a2d16600b1d6/src/CartItem.php#L238

  2. Just display the taxRate property of the CartItem available trought the magic __get method or use formatted tax() method.

bumbummen99 avatar May 17 '22 09:05 bumbummen99