@extends('dashboard.layout.master') @section('content')
@include('dashboard.layout.navbar')
Beneficiaries Without Account
@foreach($form as $item) @php $beneficiary=json_decode($item->beneficiary_details); $ref_no=$beneficiary->b_reference_number; $marital_status=get_answer(656,$item->survey_id); $date_of_insurence_of_cnic=get_answer(618,$item->survey_id); $mother_maiden_name=get_answer(616,$item->survey_id); $city_of_birth=get_answer(617,$item->survey_id); $cnic_expiry_status=get_answer(350,$item->survey_id); $date_of_birth=get_answer(351,$item->survey_id); $preferred_bank=get_answer(352,$item->survey_id); $expiry_date=get_answer(675,$item->survey_id); $next_kin_name=get_answer(657,$item->survey_id); $cnic_of_kin=get_answer(658,$item->survey_id); $relation_cnic_of_kin=get_answer(672,$item->survey_id); $conatact_of_next_kin=get_answer(671,$item->survey_id); $village_name=get_answer(2000,$item->survey_id); $district=get_answer(1003,$item->survey_id); $tehsil=get_answer(1004,$item->survey_id); $uc=get_answer(1005,$item->survey_id); @endphp @if(!in_array($ref_no,$ref_no_list)) @endif @endforeach
S NO REFERENCE NO BENEFICIARY FULL NAME BENEFICIARY FATHER'S/HUSBAND NAME CNIC/ID NUMBER MARITAL STATUS DATE OF ISSUANCE OF CNIC MOTHER MAIDEN NAME CITY OF BIRTH CNIC EXPIRY STATUS CNIC EXPIRY DATE DATE OF BIRTH VILLAGE/SETTLEMENT NAME DISTRICT TEHSIL UC NEXT OF KIN NAME NEXT OF KIN CNIC RELATIONSHIP WITH NEXT OF KIN CONTACT NO OF NEXT OF KIN PREFERED BANK
{{$loop->index+1}} {{$ref_no ?? 'not available'}} {{$beneficiary->beneficiary_name ?? 'not available'}} {{$beneficiary->father_name ?? 'not available'}} {{$beneficiary->cnic ?? 'not available'}} {{$marital_status->answer ?? 'not available'}} {{$date_of_insurence_of_cnic->answer ?? 'not available'}} {{$mother_maiden_name->answer ?? 'not available'}} {{$city_of_birth->answer ?? 'not available'}} {{$cnic_expiry_status->answer ?? 'not available'}} {{$expiry_date->answer ?? 'not available'}} {{$date_of_birth->answer ?? 'not available'}} {{$village_name->answer ?? 'not available'}} {{$district->answer ?? 'not available'}} {{$tehsil->answer ?? 'not available'}} {{$uc->answer ?? 'not available'}} {{$next_kin_name->answer ?? 'not available'}} {{$cnic_of_kin->answer ?? 'not available'}} {{$relation_cnic_of_kin->answer ?? 'not available'}} {{$conatact_of_next_kin->answer ?? 'not available'}} {{$preferred_bank->answer ?? 'not available'}}
@if(session('error')) @endif @if(session('success')) @endif @endsection