@extends('layouts.admin') @section('title', 'NBR Customs & Tariff Configuration – Admin CRM') @section('page_title', 'NBR Customs Tariffs & Import Charges') @section('content')

Bangladesh Customs Tariff Simulator Rules

Configure NBR duty rates (CD, RD, SD, VAT, AIT, AT) and standard clearing charges powering the Landed Cost Calculator.

Standard Import Surcharges & Fees

@foreach($charges as $charge)
@csrf
{{ $charge->name }} {{ $charge->currency }}
{{ $charge->description ?? 'Applied to calculator totals' }}
@endforeach

NBR Engine CC & Fuel Type Duty Brackets

@foreach($taxRules as $rule) @csrf @endforeach
Bracket Name Engine CC Fuel / Hybrid Customs (CD%) Regulatory (RD%) Supplementary (SD%) VAT % AIT % AT % Update
{{ $rule->name }} {{ $rule->cc_min }} – {{ $rule->cc_max }}cc {{ $rule->fuel_type ?? ($rule->is_hybrid ? 'Hybrid' : 'Non-Hybrid') }}
@endsection