@extends('admin.layout.app')
@section('title','Booth Agent - Index')
@push('headerscript')
@endpush
@section('content')
S.NO. |
Vidhan Sabha Name |
Booth Name |
Booth Agent Name |
Mobile No. |
Communication |
creator |
Action |
@foreach($boothagent 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}}
|
{{ $udetails->booth_name}}
|
{{ $r->name}}
|
{{ $r->mobile_number}}
|
{{-- --}}
|
@php
$name=App\Models\User::where('id',$udetails->creator_id)->value('name');
@endphp
{{ $name }}
|
Edit
Delete |
@endforeach
@endsection
@push('footerscript')
@endpush