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

{{ $zone->name }}

Code: {{ $zone->code }}

Rate Info

Zone
{{ $zone->zone }}
Currency
{{ $zone->currency }}
Base Rate
{{ number_format($zone->base_rate, 2) }}
Additional per KG
{{ number_format($zone->additional_per_kg, 2) }}
Remote Area Fee
{{ $zone->remote_area_fee !== null ? number_format($zone->remote_area_fee, 2) : '-' }}
Fuel Surcharge (%)
{{ number_format($zone->fuel_surcharge_percent, 2) }}%
Status
{{ ucfirst($zone->status) }}
Effective Period
{{ optional($zone->effective_from)->format('Y-m-d') }} — {{ optional($zone->effective_to)->format('Y-m-d') }}

Notes

{{ $zone->notes ?: 'No notes.' }}
@endsection