- Remove unused FeaturesController (empty stubs, no routes) - Remove ConvertSpatialFile CLI command (unused; service used in LayerManager) - Remove MigrateGeojsonToFeatures CLI command (one-shot migration, not referenced) - Remove .claude/worktrees/ (11 old agent worktrees from June) - Apply Laravel Pint formatting across 219 files (style only, no functional changes) Tests: 101 passing (319 assertions) API routes: unchanged (8 routes intact)
48 lines
1.1 KiB
PHP
48 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire\Users;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Livewire\Component;
|
|
use Spatie\Permission\Models\Role;
|
|
|
|
class AdminUsers extends Component
|
|
{
|
|
public string $search = '';
|
|
|
|
public $roles;
|
|
|
|
public function mount(): void
|
|
{
|
|
abort_unless(Auth::user()->can('view users'), 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.users.admin-users');
|
|
}
|
|
}
|