@extends('layouts.admin') @section('title', 'Country Duty Overrides') @section('content')
@include('partials.admin.alerts')

Country Duty Overrides

Add New
@foreach($overrides as $override) @endforeach
Country HS Code Description Duty Type Duty Value Effective Period Status Actions
{{ $override->country->code }}
{{ $override->country->name }} @if($override->country->region)
{{ $override->country->region }} @endif
{{ $override->hsCode->hs_code }} {{ Str::limit($override->hsCode->description, 40) }} {{ $override->duty_type }} @if($override->duty_type === 'percentage') {{ $override->duty_value }}% @else {{ number_format($override->duty_value, 2) }} @endif {{ $override->effective_from->format('M j, Y') }} @if($override->effective_to)
to {{ $override->effective_to->format('M j, Y') }} @else
Ongoing @endif
@if($override->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
@if($overrides->hasPages())
{{ $overrides->links() }}
@endif
@endsection