@extends('layouts.main') @push('styles') @endpush @section('content')

{{ __('insurance.inactive_CHI_plans') }}

@include('insurance::chi_plan.menu')
@include('flash::message')
@foreach($chi_plans as $chi_plan) @endforeach
{{ __('insurance.chi_plan') }} {{ __('insurance.start_date') }} {{ __('insurance.end_date') }} {{ __('insurance.is_authorization_required') }} {{ __('insurance.created_by') }}
{{ $chi_plan->name }} {{ $chi_plan->plan_start_date }} {{ $chi_plan->plan_end_date }} {{ $chi_plan->is_authorization_required == 1 ? 'Yes' : 'No' }} {{ get_full_name($chi_plan->created_by, "id", "first_name", "last_name", "users") }} {{ Form::model($chi_plan->id ,['method' => 'POST', 'route' => ['community_health_insurance_plan.activate', $chi_plan->id]]) }} {{ Form::close() }}
@endsection @push('scripts') @endpush