@extends('layouts.admin') @section('title', 'HS Code Details: ' . $hsCode->hs_code) @section('content')
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') }}
{{ json_encode($hsCode->excise_formula, JSON_PRETTY_PRINT) }}
{{ $hsCode->benchmarks()->count() }} active benchmark(s)
View Benchmarks @elseNo benchmarks defined
@endif{{ $hsCode->countryOverrides()->count() }} country override(s)
View Overrides @elseNo country overrides
@endif