diff --git a/app/Http/Livewire/Administration/UsersDialog.php b/app/Http/Livewire/Administration/UsersDialog.php index 9fd8f0bd..89666ad8 100644 --- a/app/Http/Livewire/Administration/UsersDialog.php +++ b/app/Http/Livewire/Administration/UsersDialog.php @@ -88,7 +88,7 @@ public function save(): void { $this->user->name = $data['name']; $this->user->email = $data['email']; $this->user->role = $data['role']; - // $this->user->save(); + $this->user->save(); Notification::make() ->success() ->title(__('User updated')) @@ -104,7 +104,7 @@ public function save(): void { * @return void */ public function doDeleteUser(): void { - // $this->user->delete(); + $this->user->delete(); $this->deleteConfirmationOpened = false; $this->emit('userDeleted'); Notification::make()