lasthourcloud/app/Livewire/Profile/Index.php

40 lines
825 B
PHP
Raw Normal View History

2023-05-22 20:30:33 +00:00
<?php
2023-12-07 18:06:32 +00:00
namespace App\Livewire\Profile;
2023-05-22 20:30:33 +00:00
2023-12-08 08:15:32 +00:00
use Livewire\Attributes\Validate;
2023-05-22 20:30:33 +00:00
use Livewire\Component;
2024-01-07 15:23:41 +00:00
class Index extends Component
2023-05-22 20:30:33 +00:00
{
public int $userId;
public string $email;
2023-12-08 08:15:32 +00:00
#[Validate('required')]
public string $name;
2023-05-22 20:30:33 +00:00
public function mount()
{
$this->userId = auth()->user()->id;
$this->name = auth()->user()->name;
$this->email = auth()->user()->email;
}
public function submit()
{
try {
$this->validate();
2023-12-08 08:15:32 +00:00
auth()->user()->update([
2023-05-22 20:30:33 +00:00
'name' => $this->name,
]);
2023-12-08 08:15:32 +00:00
2024-02-22 13:53:42 +00:00
$this->dispatch('success', 'Profile updated');
2023-06-09 13:55:21 +00:00
} catch (\Throwable $e) {
return handleError($e, $this);
2023-05-22 20:30:33 +00:00
}
}
2024-01-07 15:23:41 +00:00
public function render()
{
return view('livewire.profile.index');
}
2023-05-22 20:30:33 +00:00
}