1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Livewire/Profile/Settings/PersonalAddress.php
Benjamin Beganović b0c383f75b Show empty string if country is not set:
- Replace "No country set" with empty string in HtmlEngine.php
- Allow country_id & shipping_country_id to be null in shipping-address.blade.php & personal-address.blade.php
2020-10-09 16:03:27 +02:00

67 lines
1.6 KiB
PHP

<?php
namespace App\Http\Livewire\Profile\Settings;
use Livewire\Component;
class PersonalAddress extends Component
{
public $profile;
public $address1;
public $address2;
public $city;
public $state;
public $postal_code;
public $country_id;
public $countries;
public $saved;
protected $rules = [
'address1' => ['required'],
'address2' => ['required'],
'city' => ['required'],
'state' => ['required'],
'postal_code' => ['required'],
'country_id' => ['required'],
];
public function mount($countries)
{
$this->fill([
'profile' => auth()->user('contact')->client,
'address1' => auth()->user('contact')->client->address1,
'address2' => auth()->user('contact')->client->address2,
'city' => auth()->user('contact')->client->city,
'state' => auth()->user('contact')->client->state,
'postal_code' => auth()->user('contact')->client->postal_code,
'country_id' => auth()->user('contact')->client->country_id,
'countries' => $countries,
'saved' => ctrans('texts.save'),
]);
}
public function render()
{
return render('profile.settings.personal-address');
}
public function submit()
{
$data = $this->validate($this->rules);
if ($data['country_id'] == 'none') {
$data['country_id'] = null;
}
$this->profile
->fill($data)
->save();
$this->saved = ctrans('texts.saved_at', ['time' => now()->toTimeString()]);
}
}