2020-09-24 13:29:41 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-24 13:29:41 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Livewire\Profile\Settings;
|
|
|
|
|
2020-09-24 14:40:06 +02:00
|
|
|
use Illuminate\Support\Facades\Hash;
|
2020-09-24 13:29:41 +02:00
|
|
|
use Livewire\Component;
|
|
|
|
|
|
|
|
class General extends Component
|
|
|
|
{
|
|
|
|
public $profile;
|
|
|
|
|
|
|
|
public $first_name;
|
|
|
|
public $last_name;
|
|
|
|
public $email;
|
|
|
|
public $phone;
|
|
|
|
public $password;
|
|
|
|
public $password_confirmation;
|
|
|
|
|
|
|
|
public $saved;
|
|
|
|
|
|
|
|
protected $rules = [
|
2021-01-15 14:07:33 +01:00
|
|
|
'first_name' => ['sometimes'],
|
|
|
|
'last_name' => ['sometimes'],
|
2020-09-24 13:29:41 +02:00
|
|
|
'email' => ['required', 'email'],
|
|
|
|
];
|
|
|
|
|
|
|
|
public function mount()
|
|
|
|
{
|
|
|
|
$profile = auth()->user('contact');
|
|
|
|
|
|
|
|
$this->fill([
|
|
|
|
'profile' => $profile,
|
|
|
|
'first_name' => $profile->first_name,
|
|
|
|
'last_name' => $profile->last_name,
|
|
|
|
'email' => $profile->email,
|
|
|
|
'phone' => $profile->phone,
|
|
|
|
'saved' => ctrans('texts.save'),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function render()
|
|
|
|
{
|
|
|
|
return render('profile.settings.general');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function submit()
|
|
|
|
{
|
|
|
|
if ($this->profile->email != $this->email) {
|
|
|
|
$this->rules['email'][] = 'unique:client_contacts,email';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($this->password)) {
|
|
|
|
$this->rules['password'] = ['sometimes', 'nullable', 'required', 'min:6', 'confirmed'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = $this->validate($this->rules);
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
if (!empty($this->password)) {
|
|
|
|
$this->profile->password = Hash::make($this->password);
|
|
|
|
}
|
2020-09-24 13:29:41 +02:00
|
|
|
|
|
|
|
$this->profile
|
|
|
|
->fill($data)
|
|
|
|
->save();
|
|
|
|
|
|
|
|
$this->saved = ctrans('texts.saved_at', ['time' => now()->toTimeString()]);
|
|
|
|
}
|
|
|
|
}
|