@extends('superadmin.layout.app')
@section('title','About Candidate - Index')
@push('headerscript')
@endpush
@section('content')
S.NO. |
Vidhan Sabha Name |
Candidate Name |
Email |
Age |
Candidate Image |
Mobile No. |
Address |
Action |
@foreach($candidate 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->candidate_name}}
|
{{$r->email }}
|
@php
$years = Illuminate\Support\Carbon::parse($r->dob)->age;
@endphp
{{$years}}
|
|
{{ $r->mobile_no}}
|
{{ $r->address}}
|
Edit
Delete |
@endforeach
@endsection
@push('footerscript')
@endpush