@include('Admin.Includes.header') @php use Illuminate\Support\Facades\Auth; use App\General\UserClass; $logged_in_user = Auth::user(); @endphp

{{ __('User List') }}

User Table
@foreach ($users as $user) @endforeach
Name Email Phone Active Registered By Registered At Actions
{{ $user->name }} {{ $user->email }} {{ $user->phone }} {!! UserClass::check_active($user->active) !!} @if (!empty($user->created_by)) {{ UserClass::check_user($user->created_by, $users) }} @endif {{ $user->created_at ?? '' }} @if ($logged_in_user->id != $user->id) @if ($user->role_id != 1) @endif @endif
Name Email Phone Active Registered By Registered At Actions