@extends('dashboard.layout.master') @section('content')
@include('dashboard.layout.navbar')
Beneficiaries With Account
Select Bank
@foreach($form as $item) @php $beneficiary=json_decode($item->beneficiary_details); @endphp @endforeach
S NO Select Beneficairy BENEFICIARY FULL NAME Ref no BENEFICIARY FATHER'S/HUSBAND NAME CNIC/ID NUMBER MARITAL STATUS ACCOUNT NUMBER BANK NAME BRANCH NAME BANK ADDRESS ACTION
{{$loop->index+1}} {{$item->beneficiary_name ?? 'not available'}} {{$item->ref_no ?? 'not available'}} {{$beneficiary->father_name ?? 'not available'}} {{$item->beneficiary_cnic ?? 'not available'}} {{$item->marital_status ?? 'not available'}} {{$item->account_number ?? 'not available'}} {{$item->bank_name ?? 'not available'}} {{$item->branch_name ?? 'not available'}} {{$item->bank_address ?? 'not available'}} Verify Account Edit Account
{{--$form->links()--}}
@if(session('error')) @endif @if(session('success')) @endif @endsection