@extends('superadmin.layout.app')
@section('title','Admin - Index')
@push('headerscript')
@endpush
@section('content')
S.NO. |
Vidhan Sabha Name |
Booth Name |
Admin Name |
Mobile No. |
Communication |
Action |
@foreach($admin as $r)
{{ $loop->iteration }}
|
@php
$udetails=App\Models\UserDetail::where('user_id',$r->id)->first();
@endphp
@php
$vidhansabha=App\Models\VidhanSabha::where('vidhansabha_id',$r->vidhansabha_id)->value('vidhansabha_title');
@endphp
{{ $vidhansabha}}
|
{{ $udetails->booth_name}}
|
{{ $r->name}}
|
{{ $r->mobile_number}}
|
{{-- --}}
|
Edit
Delete |
@endforeach
@endsection
@push('footerscript')
@endpush