@extends('admin.layout.app')
@section('title','Voter List - Index')
@push('headerscript')
@endpush
@section('content')
S.NO. |
Vidhan Sabha Name |
Name |
Father Name |
Voter Id No. |
Mobile No. |
creator |
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->voter_id}}
|
{{ $r->phone_no}}
|
@php
$name=App\Models\User::where('id',$r->creator_id)->value('name');
@endphp
{{ $name }}
|
Edit
Delete |
@endforeach
@endsection
@push('footerscript')
@endpush