@extends('layouts.admin') @section('title', 'HS Code Details: ' . $hsCode->hs_code) @section('content')

HS Code: {{ $hsCode->hs_code }}

HS Code: {{ $hsCode->hs_code }}

Description: {{ $hsCode->description }}

Duty Type: {{ $hsCode->default_duty_type }}

Duty Value: @if($hsCode->default_duty_type === 'percentage') {{ $hsCode->default_duty_value }}% @else KES {{ number_format($hsCode->default_duty_value, 2) }} @endif

Excise Applicable: @if($hsCode->excise_applicable) Yes @else No @endif

Sensitive Goods: @if($hsCode->sensitive) Yes @else No @endif

Created: {{ $hsCode->created_at->format('M j, Y H:i') }}

Last Updated: {{ $hsCode->updated_at->format('M j, Y H:i') }}

@if($hsCode->excise_applicable && $hsCode->excise_formula)
Excise Formula
{{ json_encode($hsCode->excise_formula, JSON_PRETTY_PRINT) }}
@endif
Related Information
Benchmarks
@if($hsCode->benchmarks()->exists())

{{ $hsCode->benchmarks()->count() }} active benchmark(s)

View Benchmarks @else

No benchmarks defined

@endif
Country Overrides
@if($hsCode->countryOverrides()->exists())

{{ $hsCode->countryOverrides()->count() }} country override(s)

View Overrides @else

No country overrides

@endif
@endsection