@php
$breakdown = $calculationLog->getResultValue('breakdown', []);
$taxBase = $calculationLog->getResultValue('tax_base', []);
@endphp
CIF Value
KES {{ number_format($taxBase['cif_value'] ?? 0, 2) }}
Benchmark Applied
@if($taxBase['benchmark_applied'] ?? false)
Yes
KES {{ number_format($taxBase['benchmark_value'] ?? 0, 2) }}
@else
No
@endif
Final Tax Base
KES {{ number_format($taxBase['final_tax_base'] ?? 0, 2) }}
| Tax Type |
Amount (KES) |
Percentage of Total |
| Import Duty |
{{ number_format($breakdown['import_duty'] ?? 0, 2) }} |
{{ $calculationLog->total_payable > 0 ? number_format(($breakdown['import_duty'] ?? 0) / $calculationLog->total_payable * 100, 1) : 0 }}%
|
@if(($breakdown['excise_duty'] ?? 0) > 0)
| Excise Duty |
{{ number_format($breakdown['excise_duty'] ?? 0, 2) }} |
{{ $calculationLog->total_payable > 0 ? number_format(($breakdown['excise_duty'] ?? 0) / $calculationLog->total_payable * 100, 1) : 0 }}%
|
@endif
| VAT |
{{ number_format($breakdown['vat'] ?? 0, 2) }} |
{{ $calculationLog->total_payable > 0 ? number_format(($breakdown['vat'] ?? 0) / $calculationLog->total_payable * 100, 1) : 0 }}%
|
| IDF |
{{ number_format($breakdown['idf'] ?? 0, 2) }} |
{{ $calculationLog->total_payable > 0 ? number_format(($breakdown['idf'] ?? 0) / $calculationLog->total_payable * 100, 1) : 0 }}%
|
| RDL |
{{ number_format($breakdown['rdl'] ?? 0, 2) }} |
{{ $calculationLog->total_payable > 0 ? number_format(($breakdown['rdl'] ?? 0) / $calculationLog->total_payable * 100, 1) : 0 }}%
|
| Total Taxes Payable |
KES {{ number_format($calculationLog->total_payable, 2) }} |
100% |