@extends('layouts.main') @push('styles') @endpush @section('content')
| {{ __('insurance.chi_plan') }} | {{ __('insurance.start_date') }} | {{ __('insurance.end_date') }} | {{ __('insurance.plan_fee') }} | {{ __('insurance.overall_annual_limit_for_member') }} | {{ __('insurance.overall_annual_limit_for_family') }} | {{ __('insurance.is_authorization_required') }} | {{ __('insurance.created_by') }} | |||
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $chi_plan->name }} | {{ $chi_plan->plan_start_date }} | {{ $chi_plan->plan_end_date }} | {{ ugandan_shillings($chi_plan->plan_fee) }} | {{ ugandan_shillings($chi_plan->member_annual_limit) }} | {{ ugandan_shillings($chi_plan->family_annual_limit) }} | {{ ($chi_plan->is_authorized_required == 1) ? 'Yes' : 'No' }} | {{ get_full_name($chi_plan->created_by, "id", "first_name", "last_name", "users") }} at {{ streamline_date_time($chi_plan->created_at) }} | {{ __('drug_forms.edit') }} | {{ __('insurance.details') }} | {{ Form::model($chi_plan->id ,['method' => 'DELETE', 'route' => ['community_health_insurance_plan.destroy', $chi_plan->id]]) }} {{ Form::close() }} |