@extends('layouts.admin') @section('title', 'Benchmark Details') @section('content')

Benchmark Details

Back to List

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

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

Minimum Type: {{ $benchmark->min_type }}

Minimum Value: {{ number_format($benchmark->min_value, 2) }} {{ $benchmark->currency }}

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

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

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

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

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

@endsection