@extends('superadmin.layout.app')
@section('title','Voter List - Index')
@push('headerscript')
@endpush
@section('content')
S.NO. |
Vidhan Sabha Name |
Name |
Father Name |
Mobile No. |
Voter Id No. |
Action |
@foreach($voterlist as $r)
{{ $loop->iteration }}
|
@php
$udetails=App\Models\UserDetail::where('user_id',$r->id)->first();
@endphp
@php
$vidhansabha=App\Models\VidhanSabha::where('id',$r->vidhansabha_id)->value('vidhansabha');
@endphp
{{ $vidhansabha}}
|
{{ $r->name}}
|
{{ $r->father_name}}
|
{{ $r->phone_no}}
|
{{ $r->voter_id}}
|
|
@endforeach
@endsection
@push('footerscript')
@endpush