6e66f707d5
Full restore of the7d854ffsnapshot (2026-06-16 18:05, before the security review). Forward commit, no history rewrite —f8a1310and all later commits remain recoverable in history. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire;
|
|
|
|
use Livewire\Component;
|
|
use App\Models\User;
|
|
use Spatie\Permission\Models\Role;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class AdminUsers extends Component
|
|
{
|
|
public string $search = '';
|
|
public $roles;
|
|
|
|
public function mount(): void
|
|
{
|
|
if (!Auth::user()->hasRole('Admin')) abort(403);
|
|
$this->roles = Role::orderBy('name')->get();
|
|
}
|
|
|
|
public function getUsersProperty()
|
|
{
|
|
return User::with('roles')
|
|
->when($this->search, fn($q) =>
|
|
$q->where(fn($q2) => $q2
|
|
->where('name', 'like', '%' . $this->search . '%')
|
|
->orWhere('email', 'like', '%' . $this->search . '%')))
|
|
->orderBy('name')
|
|
->get();
|
|
}
|
|
|
|
public function deleteUser(int $userId): void
|
|
{
|
|
if ($userId === Auth::id()) {
|
|
$this->dispatch('notify', 'No puedes eliminarte a ti mismo.');
|
|
return;
|
|
}
|
|
User::findOrFail($userId)->delete();
|
|
$this->dispatch('notify', 'Usuario eliminado.');
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.admin-users');
|
|
}
|
|
}
|