@extends('layouts.admin') @section('title', 'Edit HS Code') @section('content')

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

@csrf @method('PUT') @include('partials.admin.forms.hs-code')
Cancel
HS Code Information

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

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

@if($hsCode->benchmarks()->exists())
This HS Code has {{ $hsCode->benchmarks()->count() }} benchmark(s).
@endif @if($hsCode->countryOverrides()->exists())
This HS Code has {{ $hsCode->countryOverrides()->count() }} country override(s).
@endif
@endsection