We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aba344d commit e5671d1Copy full SHA for e5671d1
1 file changed
app/Http/Livewire/Administration/UsersDialog.php
@@ -88,7 +88,7 @@ public function save(): void {
88
$this->user->name = $data['name'];
89
$this->user->email = $data['email'];
90
$this->user->role = $data['role'];
91
- // $this->user->save();
+ $this->user->save();
92
Notification::make()
93
->success()
94
->title(__('User updated'))
@@ -104,7 +104,7 @@ public function save(): void {
104
* @return void
105
*/
106
public function doDeleteUser(): void {
107
- // $this->user->delete();
+ $this->user->delete();
108
$this->deleteConfirmationOpened = false;
109
$this->emit('userDeleted');
110
0 commit comments