@extends('dashboard.layout.master') @section('content')
@include('dashboard.layout.navbar')
Beneficiaries BioMetric Status
@foreach($form as $item) @php $beneficiary=json_decode($item->beneficiary_details); $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); @endphp @if($item->answer=='No') @endif @endforeach
S NO REFERENCE NO BENEFICIARY FULL NAME BENEFICIARY FATHER'S/HUSBAND NAME CNIC/ID NUMBER MARITAL STATUS ACCOUNT NUMBER BANK NAME BRANCH NAME BANK ADDRESS ACTION
{{$loop->index+1}} {{$item->ref_no ?? 'not available'}} {{$beneficiary->beneficiary_name ?? 'not available'}} {{$beneficiary->father_name ?? 'not available'}} {{$beneficiary->cnic ?? 'not available'}} {{$marital_status->answer ?? 'not available'}} {{$item->account_number ?? 'not available'}} {{$item->bank_name ?? 'not available'}} {{$item->branch_name ?? 'not available'}} {{$item->bank_address ?? 'not available'}} Verify Bio Metric
@if(session('error')) @endif @if(session('success')) @endif @endsection