@section('page-title', 'Policies')

Medical Aid Packages

Manage plan packages and benefit structures

@can('manage_policies') + New Package @endcan
@foreach($policies as $policy)
{{ $policy->currency }} {{ ucfirst($policy->status) }}

{{ $policy->name }}

{{ $policy->code }}

{{ $policy->description }}

Monthly Premium {{ $policy->currency }} {{ number_format($policy->monthly_premium_cents / 100, 2) }}
Annual Limit ${{ number_format($policy->global_limit_cents / 100, 2) }}
Members: {{ $policy->members_count }} Waiver: {{ $policy->has_waiting_period_waiver ? 'Yes' : 'No' }}
General {{ $policy->general_waiting_months }}m
Specialist {{ $policy->specialist_waiting_months }}m
Maternity {{ $policy->maternity_waiting_months }}m
Chronic {{ $policy->chronic_waiting_months }}m
View Details @can('manage_policies') Edit @endcan
@endforeach