@extends('layouts.guest') @section('title', 'Tax Calculation Results') @section('content')

Tax Calculation Results

Detailed breakdown of import taxes and duties

Calculation Complete

Calculation ID: {{ $calculation->id ?? 'N/A' }}
Input Details
@if($input['weight']) @endif @if($input['quantity'] && $input['quantity'] > 1) @endif
HS Code {{ $input['hs_code'] }}
Country of Origin {{ $input['country_of_origin'] }}
CIF Value KES {{ number_format($input['cif_value'], 2) }}
Weight {{ number_format($input['weight'], 2) }} KG
Quantity {{ $input['quantity'] }} units
HS Code Information

Code: {{ $result['hs_code_details']['code'] }}

Description: {{ $result['hs_code_details']['description'] }}

Duty Type: {{ ucfirst($result['hs_code_details']['duty_type']) }}

Duty Value: {{ $result['hs_code_details']['duty_value'] }}{{ $result['hs_code_details']['duty_type'] === 'percentage' ? '%' : '' }}

@if($result['hs_code_details']['excise_applicable'])

Excise: Applicable

@endif @if($result['hs_code_details']['sensitive'])

Sensitive Goods: Yes

@endif
Tax Base Calculation
CIF Value

KES {{ number_format($result['tax_base']['cif_value'], 2) }}

Benchmark Applied

@if($result['tax_base']['benchmark_applied']) Yes
KES {{ number_format($result['tax_base']['benchmark_value'], 2) }} @else No @endif

Final Tax Base

KES {{ number_format($result['tax_base']['final_tax_base'], 2) }}

Tax Breakdown
@if($result['breakdown']['excise_duty'] > 0) @endif
Tax Type Calculation Amount (KES)
Import Duty {{ $result['hs_code_details']['duty_type'] === 'percentage' ? $result['hs_code_details']['duty_value'] . '% of Tax Base' : 'Flat Rate' }} {{ number_format($result['breakdown']['import_duty'], 2) }}
Excise Duty Applicable for this HS code {{ number_format($result['breakdown']['excise_duty'], 2) }}
VAT (16%) 16% of (Tax Base + Import Duty) {{ number_format($result['breakdown']['vat'], 2) }}
IDF (2.5%) 2.5% of Tax Base {{ number_format($result['breakdown']['idf'], 2) }}
RDL (2%) 2% of Tax Base {{ number_format($result['breakdown']['rdl'], 2) }}
Total Taxes Payable KES {{ number_format($result['total_taxes'], 2) }}
Important Notes
  • This calculation is for estimation purposes only
  • Rates are based on current tax regulations
  • Final amounts may vary based on actual customs assessment
  • Calculation timestamp: {{ now()->format('M j, Y H:i') }}

KES {{ number_format($result['total_taxes'], 2) }}

Total Payable

New Calculation
@endsection