@extends('superadmin.layout.app')
@section('title','Registration - Index')
@push('headerscript')
@endpush
@section('content')
S.NO. |
User Name |
Mobile No. |
Change Role |
Action |
@foreach($registration as $r)
{{ $loop->iteration }}
|
@php
$udetails=App\Models\UserDetail::where('user_id',$r->id)->first();
@endphp
{{ $r->name}}
|
{{ $r->mobile_number}}
|
Admin
Booth Agent
User
|
Edit
Delete |
@endforeach
@endsection
@push('footerscript')
@endpush