@extends('superadmin.layout.app') @section('title','Voter List - Index') @push('headerscript') @endpush @section('content')

All Voter

@csrf @foreach($voterlist as $r) @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 @endforeach
S.NO. Vidhan Sabha Name Name Father Name Mobile No. Voter Id No. Action
{{ $loop->iteration }} {{ $vidhansabha}} {{ $r->name}} {{ $r->father_name}} {{ $r->phone_no}} {{ $r->voter_id}} voter_verified == 2) checked disabled @endif type="checkbox" name="voter_count[]" value="{{$r->unique_id}}">
@endsection @push('footerscript') @endpush