7d854ffb0a
- Translation system: lang/es/ PHP files (auth, validation, pagination, passwords)
- Rappasoft vendor translations published (lang/vendor/livewire-tables/es/)
- JSON files synced to 391 keys (EN + ES, full parity)
- APP_LOCALE changed to 'es', users.locale column default changed to 'es'
- Language switcher fixed: JS event + window.location.reload() avoids /livewire/update redirect
- SetLocale middleware fallback uses config('app.locale') instead of hardcoded 'en'
- setSortingPillsEnabled(false) on ProjectTable, CompanyTable, UserTable
- Translated 17 blade views: project-map, template-manager, layer-manager,
company-management, phase-list, media-manager, reports-dashboard,
client-projects, layer-upload, project-form, project-map-editor-tab,
admin/users, projects/media, projects/templates, layouts/client
- Navigation 'Empresas' link uses __('Companies')
- Fixed typo key 'Fases and layers' -> 'Phases and layers'
Co-Authored-By: Claude Sonnet 4.6 <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');
|
|
}
|
|
}
|