mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 23:01:29 +00:00
450 lines
34 KiB
PHP
450 lines
34 KiB
PHP
@extends('layouts.admin')
|
|
|
|
@section('content')
|
|
<div class="space-y-6" x-data="adminUserList">
|
|
<x-admin.card>
|
|
<x-admin.page-header :title="$title" icon="fas fa-users">
|
|
<x-slot:actions>
|
|
<x-admin.button :href="url('admin/user-edit?action=add')" icon="fas fa-plus">Add New User</x-admin.button>
|
|
</x-slot:actions>
|
|
</x-admin.page-header>
|
|
|
|
<!-- Search Filters -->
|
|
<x-admin.filter-panel>
|
|
<form method="get" action="{{ url('admin/user-list') }}">
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
|
|
<div>
|
|
<label for="username" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Username</label>
|
|
<input type="text"
|
|
id="username"
|
|
name="username"
|
|
value="{{ $username ?? '' }}"
|
|
placeholder="Filter by username"
|
|
class="w-full px-3 py-2 bg-white dark:bg-gray-800 text-gray-900 dark:text-gray-100 border border-gray-300 dark:border-gray-600 rounded-md focus:ring-blue-500 dark:focus:ring-blue-400 focus:border-blue-500 dark:focus:border-blue-400">
|
|
</div>
|
|
<div>
|
|
<label for="email" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Email</label>
|
|
<input type="text"
|
|
id="email"
|
|
name="email"
|
|
value="{{ $email ?? '' }}"
|
|
placeholder="Filter by email"
|
|
class="w-full px-3 py-2 bg-white dark:bg-gray-800 text-gray-900 dark:text-gray-100 border border-gray-300 dark:border-gray-600 rounded-md focus:ring-blue-500 dark:focus:ring-blue-400 focus:border-blue-500 dark:focus:border-blue-400">
|
|
</div>
|
|
<div>
|
|
<label for="host" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Host/IP</label>
|
|
<input type="text"
|
|
id="host"
|
|
name="host"
|
|
value="{{ $host ?? '' }}"
|
|
placeholder="Filter by host"
|
|
class="w-full px-3 py-2 bg-white dark:bg-gray-800 text-gray-900 dark:text-gray-100 border border-gray-300 dark:border-gray-600 rounded-md focus:ring-blue-500 dark:focus:ring-blue-400 focus:border-blue-500 dark:focus:border-blue-400">
|
|
</div>
|
|
<div>
|
|
<label for="role" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Role</label>
|
|
<select id="role"
|
|
name="role"
|
|
class="w-full px-3 py-2 bg-white dark:bg-gray-800 text-gray-900 dark:text-gray-100 border border-gray-300 dark:border-gray-600 rounded-md focus:ring-blue-500 dark:focus:ring-blue-400 focus:border-blue-500 dark:focus:border-blue-400">
|
|
<option value="">All Roles</option>
|
|
@foreach($role_ids ?? [] as $index => $roleId)
|
|
<option value="{{ $roleId }}" {{ ($role ?? '') == $roleId ? 'selected' : '' }}>
|
|
{{ $role_names[$roleId] ?? '' }}
|
|
</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|
|
<div>
|
|
<label for="verified" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Verified</label>
|
|
<select id="verified"
|
|
name="verified"
|
|
class="w-full px-3 py-2 bg-white dark:bg-gray-800 text-gray-900 dark:text-gray-100 border border-gray-300 dark:border-gray-600 rounded-md focus:ring-blue-500 dark:focus:ring-blue-400 focus:border-blue-500 dark:focus:border-blue-400">
|
|
<option value="" {{ ($verified ?? '') === '' ? 'selected' : '' }}>All Users</option>
|
|
<option value="1" {{ ($verified ?? '') === '1' ? 'selected' : '' }}>Verified</option>
|
|
<option value="0" {{ ($verified ?? '') === '0' ? 'selected' : '' }}>Not Verified</option>
|
|
</select>
|
|
</div>
|
|
<div>
|
|
<label for="created_from" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Registered From</label>
|
|
<input type="date"
|
|
id="created_from"
|
|
name="created_from"
|
|
value="{{ $created_from ?? '' }}"
|
|
class="w-full px-3 py-2 bg-white dark:bg-gray-800 text-gray-900 dark:text-gray-100 border border-gray-300 dark:border-gray-600 rounded-md focus:ring-blue-500 dark:focus:ring-blue-400 focus:border-blue-500 dark:focus:border-blue-400">
|
|
</div>
|
|
<div>
|
|
<label for="created_to" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Registered To</label>
|
|
<input type="date"
|
|
id="created_to"
|
|
name="created_to"
|
|
value="{{ $created_to ?? '' }}"
|
|
class="w-full px-3 py-2 bg-white dark:bg-gray-800 text-gray-900 dark:text-gray-100 border border-gray-300 dark:border-gray-600 rounded-md focus:ring-blue-500 dark:focus:ring-blue-400 focus:border-blue-500 dark:focus:border-blue-400">
|
|
</div>
|
|
</div>
|
|
<div class="mt-4 flex gap-2">
|
|
<x-admin.button type="submit" icon="fas fa-search">Filter</x-admin.button>
|
|
<x-admin.button :href="url('admin/user-list')" tone="gray" icon="fas fa-times">Clear</x-admin.button>
|
|
</div>
|
|
</form>
|
|
</x-admin.filter-panel>
|
|
|
|
<!-- Validation Messages -->
|
|
@if($errors->any())
|
|
<div class="mx-6 mt-4 p-4 bg-red-50 dark:bg-red-900 border border-red-200 dark:border-red-700 rounded-lg">
|
|
<p class="text-red-800 dark:text-red-200">
|
|
<i class="fas fa-exclamation-circle mr-2"></i>{{ $errors->first() }}
|
|
</p>
|
|
</div>
|
|
@endif
|
|
|
|
<div id="validationError" class="mx-6 mt-4 p-4 bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg hidden">
|
|
<p class="text-yellow-800 dark:text-yellow-300">
|
|
<i class="fas fa-exclamation-triangle mr-2"></i><span id="validationErrorMessage"></span>
|
|
</p>
|
|
</div>
|
|
|
|
<!-- User Table -->
|
|
@if(count($userlist) > 0)
|
|
<form method="post" action="{{ route('admin.user-list.bulk') }}" id="bulkUserActionForm" class="px-6 py-4 bg-gray-50 dark:bg-gray-900 border-b border-gray-200 dark:border-gray-700">
|
|
@csrf
|
|
<div class="flex flex-col md:flex-row md:items-center gap-3">
|
|
<label for="bulkUserAction" class="text-sm font-medium text-gray-700 dark:text-gray-300">Bulk Actions:</label>
|
|
<select name="action" id="bulkUserAction" class="w-full md:w-auto px-3 py-2 border border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-700 text-gray-900 dark:text-gray-100 rounded-md focus:ring-blue-500 focus:border-blue-500">
|
|
<option value="">Select Action</option>
|
|
<option value="verify">Mark Selected Verified</option>
|
|
<option value="resend_verification">Resend Verification Email</option>
|
|
<option value="delete">Soft Delete Selected</option>
|
|
</select>
|
|
<x-admin.button type="submit"
|
|
id="bulkUserActionBtn"
|
|
class="w-full md:w-auto"
|
|
icon="fas fa-check">
|
|
Apply
|
|
</x-admin.button>
|
|
<p class="text-xs text-gray-500 dark:text-gray-400">
|
|
Select non-admin active users below. Deleted users are managed from the Deleted Users page.
|
|
</p>
|
|
</div>
|
|
</form>
|
|
|
|
<!-- Top Scrollbar -->
|
|
<div class="overflow-x-auto border-b border-gray-200 dark:border-gray-700" id="topScroll">
|
|
<div style="height: 1px;" id="topScrollContent"></div>
|
|
</div>
|
|
|
|
<div class="overflow-x-auto" id="bottomScroll">
|
|
<table class="min-w-full divide-y divide-gray-200 dark:divide-gray-700">
|
|
<thead class="bg-gray-50 dark:bg-gray-900">
|
|
<tr>
|
|
<th class="px-6 py-3 text-left">
|
|
<input type="checkbox" id="selectAllUserList" class="h-4 w-4 text-blue-600 dark:text-blue-400 focus:ring-blue-500 border-gray-300 dark:border-gray-600 rounded" title="Select all active users on this page">
|
|
</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">ID</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">
|
|
<a href="{{ url('admin/user-list?' . http_build_query(array_merge(request()->except('ob'), ['ob' => request('ob') === 'username_asc' ? 'username_desc' : 'username_asc']))) }}" class="group inline-flex items-center hover:text-gray-700 dark:hover:text-gray-200">
|
|
Username
|
|
@if(request('ob') === 'username_asc')
|
|
<i class="fas fa-sort-up ml-1"></i>
|
|
@elseif(request('ob') === 'username_desc')
|
|
<i class="fas fa-sort-down ml-1"></i>
|
|
@else
|
|
<i class="fas fa-sort ml-1 opacity-50 group-hover:opacity-100"></i>
|
|
@endif
|
|
</a>
|
|
</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">Email</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">
|
|
<a href="{{ url('admin/user-list?' . http_build_query(array_merge(request()->except('ob'), ['ob' => request('ob') === 'apiaccess_asc' ? 'apiaccess_desc' : 'apiaccess_asc']))) }}" class="group inline-flex items-center hover:text-gray-700 dark:hover:text-gray-200">
|
|
Status
|
|
@if(request('ob') === 'apiaccess_asc')
|
|
<i class="fas fa-sort-up ml-1"></i>
|
|
@elseif(request('ob') === 'apiaccess_desc')
|
|
<i class="fas fa-sort-down ml-1"></i>
|
|
@else
|
|
<i class="fas fa-sort ml-1 opacity-50 group-hover:opacity-100"></i>
|
|
@endif
|
|
</a>
|
|
</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">Role</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">
|
|
<i class="fas fa-layer-group mr-1"></i>Pending Role
|
|
</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">
|
|
<a href="{{ url('admin/user-list?' . http_build_query(array_merge(request()->except('ob'), ['ob' => request('ob') === 'rolechangedate_asc' ? 'rolechangedate_desc' : 'rolechangedate_asc']))) }}" class="group inline-flex items-center hover:text-gray-700 dark:hover:text-gray-200">
|
|
Role Expiry
|
|
@if(request('ob') === 'rolechangedate_asc')
|
|
<i class="fas fa-sort-up ml-1"></i>
|
|
@elseif(request('ob') === 'rolechangedate_desc')
|
|
<i class="fas fa-sort-down ml-1"></i>
|
|
@else
|
|
<i class="fas fa-sort ml-1 opacity-50 group-hover:opacity-100"></i>
|
|
@endif
|
|
</a>
|
|
</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">Host</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">Country</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">Verified</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">
|
|
<a href="{{ url('admin/user-list?' . http_build_query(array_merge(request()->except('ob'), ['ob' => request('ob') === 'createdat_asc' ? 'createdat_desc' : 'createdat_asc']))) }}" class="group inline-flex items-center hover:text-gray-700 dark:hover:text-gray-200">
|
|
Created
|
|
@if(request('ob') === 'createdat_asc')
|
|
<i class="fas fa-sort-up ml-1"></i>
|
|
@elseif(request('ob') === 'createdat_desc')
|
|
<i class="fas fa-sort-down ml-1"></i>
|
|
@else
|
|
<i class="fas fa-sort ml-1 opacity-50 group-hover:opacity-100"></i>
|
|
@endif
|
|
</a>
|
|
</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider" title="Daily API requests in last 24 hours">
|
|
<i class="fas fa-code mr-1"></i>Daily API
|
|
</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider" title="Daily downloads in last 24 hours">
|
|
<i class="fas fa-download mr-1"></i>Daily DLs
|
|
</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="bg-white dark:bg-gray-800 divide-y divide-gray-200 dark:divide-gray-700">
|
|
@foreach($userlist as $user)
|
|
@php
|
|
$isAdminUser = (int) $user->roles_id === \App\Enums\UserRole::ADMIN->value
|
|
|| ($user->rolename ?? null) === \App\Enums\UserRole::ADMIN->label()
|
|
|| $user->roles->contains('name', \App\Enums\UserRole::ADMIN->label());
|
|
$isVerified = $user->hasVerifiedEmail();
|
|
@endphp
|
|
<tr class="hover:bg-gray-50 dark:hover:bg-gray-700 transition">
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
@if(!$user->deleted_at && !$isAdminUser)
|
|
<input type="checkbox" name="user_ids[]" value="{{ $user->id }}" form="bulkUserActionForm" data-is-verified="{{ $isVerified ? '1' : '0' }}" class="user-list-checkbox h-4 w-4 text-blue-600 dark:text-blue-400 focus:ring-blue-500 border-gray-300 dark:border-gray-600 rounded">
|
|
@elseif($isAdminUser)
|
|
<input type="checkbox" disabled class="h-4 w-4 text-gray-300 dark:text-gray-600 border-gray-300 dark:border-gray-600 rounded cursor-not-allowed" title="Admin users cannot be selected for bulk actions">
|
|
@else
|
|
<input type="checkbox" disabled class="h-4 w-4 text-gray-300 dark:text-gray-600 border-gray-300 dark:border-gray-600 rounded cursor-not-allowed" title="Deleted users cannot be selected here">
|
|
@endif
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900 dark:text-gray-100">{{ $user->id }}</td>
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
<div class="text-sm font-medium text-gray-900 dark:text-gray-100">{{ $user->username }}</div>
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-400">{{ $user->email }}</td>
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
@if($user->deleted_at)
|
|
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-red-100 dark:bg-red-900 text-red-800 dark:text-red-200" title="Soft Deleted on {{ \Carbon\Carbon::parse($user->deleted_at)->format('M j, Y g:i A') }}">
|
|
<i class="fas fa-trash mr-1"></i>Deleted
|
|
</span>
|
|
@elseif($user->roles_id === \App\Enums\UserRole::DISABLED->value)
|
|
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-yellow-100 dark:bg-yellow-900 text-yellow-800 dark:text-yellow-200" title="User Disabled">
|
|
<i class="fas fa-ban mr-1"></i>Disabled
|
|
</span>
|
|
@else
|
|
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 dark:bg-green-900 text-green-800 dark:text-green-200">
|
|
<i class="fas fa-check-circle mr-1"></i>Active
|
|
</span>
|
|
@endif
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-blue-100 dark:bg-blue-900 text-blue-800 dark:text-blue-200">
|
|
{{ $user->rolename ?? 'N/A' }}
|
|
</span>
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
@if(!empty($user->pending_roles_id) && !empty($user->pending_role_start_date))
|
|
@php
|
|
$pendingStartDate = \Carbon\Carbon::parse($user->pending_role_start_date);
|
|
@endphp
|
|
<div class="flex flex-col gap-1">
|
|
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-purple-100 dark:bg-purple-900 text-purple-800 dark:text-purple-200 w-fit">
|
|
<i class="fas fa-layer-group mr-1"></i>{{ $role_names[$user->pending_roles_id] ?? 'Unknown' }}
|
|
</span>
|
|
<span class="text-xs text-gray-500 dark:text-gray-400">
|
|
<i class="fas fa-clock mr-1"></i>{{ $pendingStartDate->diffForHumans() }}
|
|
</span>
|
|
</div>
|
|
@else
|
|
<span class="text-gray-400 dark:text-gray-500 text-xs">—</span>
|
|
@endif
|
|
</td>
|
|
<td class="px-6 py-4 text-sm text-gray-500 dark:text-gray-400">
|
|
@if($user->rolechangedate)
|
|
@php
|
|
$expiryDate = \Carbon\Carbon::parse($user->rolechangedate);
|
|
$isExpired = $expiryDate->isPast();
|
|
$isExpiringSoon = !$isExpired && $expiryDate->diffInDays(now()) <= 7;
|
|
@endphp
|
|
<div class="flex flex-col gap-1">
|
|
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full w-fit
|
|
@if($isExpired) bg-red-100 dark:bg-red-900 text-red-800 dark:text-red-200
|
|
@elseif($isExpiringSoon) bg-yellow-100 dark:bg-yellow-900 text-yellow-800 dark:text-yellow-200
|
|
@else bg-gray-100 dark:bg-gray-700 text-gray-800 dark:text-gray-300
|
|
@endif">
|
|
<i class="fas fa-calendar mr-1"></i>{{ $expiryDate->format('M j, Y') }}
|
|
@if($isExpired) <i class="fas fa-exclamation-circle ml-1"></i>@endif
|
|
</span>
|
|
<span class="text-xs text-gray-500 dark:text-gray-400 flex items-center">
|
|
<i class="fas fa-clock mr-1"></i>{{ $expiryDate->format('g:i A') }}
|
|
<span class="ml-2 italic">({{ $expiryDate->diffForHumans(['parts' => 2]) }})</span>
|
|
</span>
|
|
</div>
|
|
@else
|
|
<span class="text-gray-400 dark:text-gray-500 flex items-center">
|
|
<i class="fas fa-infinity mr-1"></i>Never
|
|
</span>
|
|
@endif
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-400">{{ $user->host ?? 'N/A' }}</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-400">
|
|
@if(!empty($user->country_code))
|
|
<span title="{{ $user->country_name }}">{{ $user->country_code }}</span>
|
|
@else
|
|
N/A
|
|
@endif
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
@if($isVerified)
|
|
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 dark:bg-green-900 text-green-800 dark:text-green-200">
|
|
<i class="fas fa-check mr-1"></i>Yes
|
|
</span>
|
|
@else
|
|
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-red-100 dark:bg-red-900 text-red-800 dark:text-red-200">
|
|
<i class="fas fa-times mr-1"></i>No
|
|
</span>
|
|
@endif
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-400">
|
|
{{ $user->created_at ? $user->created_at->format('Y-m-d') : 'N/A' }}
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900 dark:text-gray-100" title="API requests in last 24 hours">
|
|
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium
|
|
{{ ($user->daily_api_count ?? 0) > 0 ? 'bg-blue-100 dark:bg-blue-900 text-blue-800 dark:text-blue-200' : 'bg-gray-100 dark:bg-gray-700 text-gray-800 dark:text-gray-300' }}">
|
|
<i class="fas fa-code mr-1"></i>{{ $user->daily_api_count ?? 0 }}
|
|
</span>
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900 dark:text-gray-100" title="Downloads in last 24 hours">
|
|
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium
|
|
{{ ($user->daily_download_count ?? 0) > 0 ? 'bg-green-100 dark:bg-green-900 text-green-800 dark:text-green-200' : 'bg-gray-100 dark:bg-gray-700 text-gray-800 dark:text-gray-300' }}">
|
|
<i class="fas fa-download mr-1"></i>{{ $user->daily_download_count ?? 0 }}
|
|
</span>
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
|
|
<div class="flex gap-2">
|
|
@if($user->deleted_at)
|
|
<!-- Show restore button for deleted users -->
|
|
<form action="{{ route('admin.deleted.users.restore', $user->id) }}" method="POST" class="inline-form">
|
|
@csrf
|
|
<button type="submit"
|
|
class="text-green-600 dark:text-green-400 hover:text-green-900 dark:hover:text-green-300 bg-transparent border-0 p-0 cursor-pointer"
|
|
title="Restore User"
|
|
data-confirm="Are you sure you want to restore user '{{ $user->username }}'?">
|
|
<i class="fas fa-undo"></i>
|
|
</button>
|
|
</form>
|
|
@else
|
|
<!-- Show normal actions for active users -->
|
|
<a href="{{ url('admin/user-edit?id=' . $user->id) }}"
|
|
class="text-blue-600 dark:text-blue-400 hover:text-blue-900 dark:hover:text-blue-300"
|
|
title="Edit">
|
|
<i class="fas fa-edit"></i>
|
|
</a>
|
|
<a href="{{ url('admin/user-role-history/' . $user->id) }}"
|
|
class="text-purple-600 dark:text-purple-400 hover:text-purple-900 dark:hover:text-purple-300"
|
|
title="Role History">
|
|
<i class="fas fa-history"></i>
|
|
</a>
|
|
@if(!$isVerified)
|
|
<form method="POST" action="{{ route('admin.verify') }}" class="inline verify-user-form">
|
|
@csrf
|
|
<input type="hidden" name="id" value="{{ $user->id }}">
|
|
<button type="button"
|
|
class="text-green-600 dark:text-green-400 hover:text-green-900 dark:hover:text-green-300 border-0 bg-transparent cursor-pointer p-0"
|
|
title="Verify User"
|
|
data-show-verify-modal
|
|
data-form-id="{{ $user->id }}">
|
|
<i class="fas fa-check-circle"></i>
|
|
</button>
|
|
</form>
|
|
<form method="POST" action="{{ route('admin.resend-verification') }}" class="inline">
|
|
@csrf
|
|
<input type="hidden" name="id" value="{{ $user->id }}">
|
|
<button type="submit"
|
|
class="text-yellow-600 dark:text-yellow-400 hover:text-yellow-900 dark:hover:text-yellow-300 border-0 bg-transparent cursor-pointer p-0"
|
|
title="Resend Verification"
|
|
data-confirm="Resend account verification email to '{{ $user->username }}'?">
|
|
<i class="fas fa-envelope"></i>
|
|
</button>
|
|
</form>
|
|
@endif
|
|
<form action="{{ url('admin/user-delete') }}" method="POST" class="inline-form">
|
|
@csrf
|
|
<input type="hidden" name="id" value="{{ $user->id }}">
|
|
<button type="submit"
|
|
class="text-red-600 dark:text-red-400 hover:text-red-900 dark:hover:text-red-300 bg-transparent border-0 p-0 cursor-pointer"
|
|
title="Delete"
|
|
data-confirm="Are you sure you want to delete user '{{ $user->username }}'?">
|
|
<i class="fas fa-trash"></i>
|
|
</button>
|
|
</form>
|
|
@endif
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<!-- Pagination -->
|
|
<div class="px-6 py-4 border-t border-gray-200">
|
|
{{ $userlist->links() }}
|
|
</div>
|
|
@else
|
|
<x-admin.empty-state icon="fas fa-users" title="No users found" message="Try adjusting your search filters or add a new user." />
|
|
@endif
|
|
</x-admin.card>
|
|
</div>
|
|
|
|
<!-- Verify User Confirmation Modal (x-data mounts verifyUser so showVerifyModal/submitVerifyForm exist) -->
|
|
<div id="verifyUserModal"
|
|
x-data="verifyUser"
|
|
x-show="open"
|
|
x-cloak
|
|
x-transition:enter="transition ease-out duration-200"
|
|
x-transition:enter-start="opacity-0"
|
|
x-transition:enter-end="opacity-100"
|
|
x-transition:leave="transition ease-in duration-150"
|
|
x-transition:leave-start="opacity-100"
|
|
x-transition:leave-end="opacity-0"
|
|
class="fixed inset-0 bg-gray-900/50 dark:bg-black/70 flex items-center justify-center z-50">
|
|
<div class="bg-white dark:bg-gray-800 rounded-lg shadow-xl max-w-md w-full mx-4 transform transition-all">
|
|
<div class="px-6 py-4 border-b border-gray-200 dark:border-gray-700">
|
|
<div class="flex items-center justify-between">
|
|
<h3 class="text-lg font-semibold text-gray-900 dark:text-gray-100 flex items-center">
|
|
<i class="fas fa-check-circle text-green-600 dark:text-green-400 mr-2"></i>
|
|
Verify User
|
|
</h3>
|
|
<button type="button" @click="hide()" class="text-gray-400 hover:text-gray-600 dark:hover:text-gray-300">
|
|
<i class="fas fa-times text-xl"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="px-6 py-4">
|
|
<p class="text-gray-700 dark:text-gray-300">
|
|
Are you sure you want to manually verify this user? This will mark their email as verified.
|
|
</p>
|
|
</div>
|
|
<div class="px-6 py-4 bg-gray-50 dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 flex justify-end space-x-3">
|
|
<button type="button"
|
|
@click="hide()"
|
|
class="px-4 py-2 bg-gray-200 dark:bg-gray-700 text-gray-700 dark:text-gray-300 rounded-lg hover:bg-gray-300 dark:hover:bg-gray-600 transition font-medium">
|
|
<i class="fas fa-times mr-2"></i>Cancel
|
|
</button>
|
|
<button type="button"
|
|
@click="submit()"
|
|
class="px-4 py-2 bg-green-600 dark:bg-green-700 text-white rounded-lg hover:bg-green-700 dark:hover:bg-green-800 transition font-medium">
|
|
<i class="fas fa-check mr-2"></i>Verify
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|