1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Livewire/Profile/Settings/ShippingAddress.php
2021-01-15 13:27:46 +01:00

67 lines
1.8 KiB
PHP

<?php
namespace App\Http\Livewire\Profile\Settings;
use Livewire\Component;
class ShippingAddress extends Component
{
public $profile;
public $shipping_address1;
public $shipping_address2;
public $shipping_city;
public $shipping_state;
public $shipping_postal_code;
public $shipping_country_id;
public $countries;
public $saved;
protected $rules = [
'shipping_address1' => ['sometimes'],
'shipping_address2' => ['sometimes'],
'shipping_city' => ['sometimes'],
'shipping_state' => ['sometimes'],
'shipping_postal_code' => ['sometimes'],
'shipping_country_id' => ['sometimes'],
];
public function mount($countries)
{
$this->fill([
'profile' => auth()->user('contact')->client,
'shipping_address1' => auth()->user('contact')->client->shipping_address1,
'shipping_address2' => auth()->user('contact')->client->shipping_address2,
'shipping_city' => auth()->user('contact')->client->shipping_city,
'shipping_state' => auth()->user('contact')->client->shipping_state,
'shipping_postal_code' => auth()->user('contact')->client->shipping_postal_code,
'shipping_country_id' => auth()->user('contact')->client->shipping_country_id,
'countries' => $countries,
'saved' => ctrans('texts.save'),
]);
}
public function render()
{
return render('profile.settings.shipping-address');
}
public function submit()
{
$data = $this->validate($this->rules);
if ($data['shipping_country_id'] == 'none') {
$data['shipping_country_id'] = null;
}
$this->profile
->fill($data)
->save();
$this->saved = ctrans('texts.saved_at', ['time' => now()->toTimeString()]);
}
}