weeb 0c705c7235
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
Init
2025-05-01 21:59:51 +02:00

27 lines
550 B
PHP

<?php
namespace App\Livewire\Settings;
use App\Livewire\Actions\Logout;
use Illuminate\Support\Facades\Auth;
use Livewire\Component;
class DeleteUserForm extends Component
{
public string $password = '';
/**
* Delete the currently authenticated user.
*/
public function deleteUser(Logout $logout): void
{
$this->validate([
'password' => ['required', 'string', 'current_password'],
]);
tap(Auth::user(), $logout(...))->delete();
$this->redirect('/', navigate: true);
}
}