Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[7.x] Basic tax engine shipping VAT fix #1168

Merged
merged 10 commits into from
Oct 12, 2024
6 changes: 4 additions & 2 deletions docs/tax.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To enable the Basic Tax Engine, your config should look like this:
```php
// config/simple-commerce.php

'tax_engine' => \DuncanMcClean\SimpleCommerce\Tax\BasicTaxEngine::class,
'tax_engine' => \DuncanMcClean\SimpleCommerce\Tax\BasicTaxEngine::class,{

'tax_engine_config' => [
'rate' => 20,
Expand All @@ -45,7 +45,9 @@ If you wish to enable tax for shipping costs, simply flick the toggle in your Si

Now, the tax rate you have set for all products will also be applied to shipping costs.

If you have set the option ```included_in_prices``` to be true, you must define your shipping costs with VAT.
:::note Note!
When `included_in_prices` is `true`, you should ensure that your shipping cost includes any taxes.
:::

## Standard Tax Engine

Expand Down
Loading