@extends('admin.masterv2') @section('styleSheet') @endsection @section('content')
@include('admin.includesV2.backendAlert')
User Info
@foreach($allUsers as $user) @endforeach
ID Name Email Type Status Action
{{$user->id}} {{$user->name}} {{$user->email}} {{$user->user_type != NULL ? $userType[$user->user_type] : 'NA'}} {{$user->status == 'Y' ? 'Active' : 'Inactive'}}
Edit @php $deleteAllowed = config("dashboard_constant.DELETEALLOWED"); @endphp @if($deleteAllowed)
@csrf @method('DELETE')
@endif
ID Name Email Type Status Action
@endsection @section('customJs') @if(Session::has('success')) @endif @endsection @section('documentJquery') @endsection