coolify/app/Livewire/Profile/Index.php
2024-01-07 16:23:41 +01:00

40 lines
839 B
PHP

<?php
namespace App\Livewire\Profile;
use Livewire\Attributes\Validate;
use Livewire\Component;
class Index extends Component
{
public int $userId;
public string $email;
#[Validate('required')]
public string $name;
public function mount()
{
$this->userId = auth()->user()->id;
$this->name = auth()->user()->name;
$this->email = auth()->user()->email;
}
public function submit()
{
try {
$this->validate();
auth()->user()->update([
'name' => $this->name,
]);
$this->dispatch('success', 'Profile updated successfully.');
} catch (\Throwable $e) {
return handleError($e, $this);
}
}
public function render()
{
return view('livewire.profile.index');
}
}