Name
{{ $pricing->name }}
Code
{{ $pricing->code }}
Currency
{{ $pricing->currency }}
Zone
{{ $pricing->zone ?: '-' }}
Base Rate
{{ number_format($pricing->base_rate,2) }}
Per KG Rate
{{ $pricing->per_kg_rate ? number_format($pricing->per_kg_rate,2) : '-' }}
Per KM Rate
{{ $pricing->per_km_rate ? number_format($pricing->per_km_rate,2) : '-' }}
Minimum Charge
{{ $pricing->min_charge ? number_format($pricing->min_charge,2) : '-' }}
Effective
{{ $pricing->effective_from->format('Y-m-d') }}{{ $pricing->effective_to ? ' to '.$pricing->effective_to->format('Y-m-d') : '' }}
Status
{{ ucfirst($pricing->status) }}
Notes
{{ $pricing->notes }}