@extends('layouts.admin') @section('title', 'Country Duty Override Details') @section('content')

Country Duty Override Details

Back to List

Country: {{ $countryOverride->country->name }} ({{ $countryOverride->country->code }})

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

Description: {{ $countryOverride->hsCode->description }}

Duty Type: {{ $countryOverride->duty_type }}

Duty Value: @if($countryOverride->duty_type === 'percentage') {{ $countryOverride->duty_value }}% @else {{ number_format($countryOverride->duty_value, 2) }} @endif

Status: @if($countryOverride->is_active) Active @else Inactive @endif

Effective From: {{ $countryOverride->effective_from->format('M j, Y') }}

Effective To: @if($countryOverride->effective_to) {{ $countryOverride->effective_to->format('M j, Y') }} @else Ongoing @endif

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

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

@if($countryOverride->remarks)
Remarks

{{ $countryOverride->remarks }}

@endif
@endsection