@section('page-title', 'Tariff Details')

Tariff Code: {{ $tariff->code }}

{{ $tariff->description }}

Back

Code Information

Code
{{ $tariff->code }}
Chapter
{{ $tariff->chapter->name ?? 'N/A' }} ({{ $tariff->chapter->code ?? '' }})
Description
{{ $tariff->description }}
Waiting Period Category
{{ $tariff->waiting_period_category }}
Requires Pre-Auth
{{ $tariff->requires_preauth ? 'Yes' : 'No' }}

Pricing History

@foreach($tariff->pricing as $p) @endforeach
Currency Rate From To
{{ $p->currency }} ${{ number_format($p->amount_cents / 100, 2) }} {{ $p->effective_from->format('d M Y') }} {{ $p->effective_to ? $p->effective_to->format('d M Y') : 'Current' }}