In checkout It shows a summary with all costs, it also shows the tax costs (Steuer [german]).

Tax

How can I get the tax costs from PHP?

有帮助吗?

解决方案

Assuming you have the quote:

$totals = $quote->getTotals();
$tax = (isset($totals['tax'])) ? $totals['tax']->getValue(): 0;

If you do not have the quote you can inject \Magento\Checkout\Model\Session $checkoutSession to your constructor and get the quote using:

$quote = $checkoutSession->getQuote();
许可以下: CC-BY-SA归因
scroll top