2022-10-18 14:28:46 +02:00
|
|
|
<?php
|
|
|
|
|
2023-04-18 22:08:45 +02:00
|
|
|
namespace App\Invoice;
|
2022-10-18 14:28:46 +02:00
|
|
|
|
|
|
|
use Illuminate\Http\RedirectResponse;
|
|
|
|
use Lorisleiva\Actions\ActionRequest;
|
|
|
|
use Lorisleiva\Actions\Concerns\AsAction;
|
|
|
|
|
|
|
|
class SettingSaveAction
|
|
|
|
{
|
|
|
|
use AsAction;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array<string, string> $input
|
|
|
|
*/
|
|
|
|
public function handle(array $input): void
|
|
|
|
{
|
2023-04-18 22:08:45 +02:00
|
|
|
$settings = app(InvoiceSettings::class);
|
2022-10-18 14:28:46 +02:00
|
|
|
|
|
|
|
$settings->fill([
|
|
|
|
'from_long' => $input['from_long'] ?? '',
|
|
|
|
'from' => $input['from'] ?? '',
|
|
|
|
'mobile' => $input['mobile'] ?? '',
|
|
|
|
'email' => $input['email'] ?? '',
|
|
|
|
'website' => $input['website'] ?? '',
|
|
|
|
'address' => $input['address'] ?? '',
|
|
|
|
'place' => $input['place'] ?? '',
|
|
|
|
'zip' => $input['zip'] ?? '',
|
2022-11-17 23:59:43 +01:00
|
|
|
'iban' => $input['iban'] ?? '',
|
|
|
|
'bic' => $input['bic'] ?? '',
|
2022-10-18 14:28:46 +02:00
|
|
|
]);
|
|
|
|
|
|
|
|
$settings->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function asController(ActionRequest $request): RedirectResponse
|
|
|
|
{
|
|
|
|
$this->handle($request->all());
|
|
|
|
|
2023-07-06 13:56:19 +02:00
|
|
|
return redirect()->back();
|
2022-10-18 14:28:46 +02:00
|
|
|
}
|
|
|
|
}
|