adrema/app/Invoice/InvoiceSettings.php

69 lines
1.3 KiB
PHP
Raw Normal View History

2022-10-20 02:15:28 +02:00
<?php
2023-04-18 22:08:45 +02:00
namespace App\Invoice;
2022-10-20 02:15:28 +02:00
2023-06-01 12:04:31 +02:00
use App\Setting\Contracts\Storeable;
2022-10-20 02:15:28 +02:00
use App\Setting\LocalSettings;
2024-08-01 11:32:14 +02:00
class InvoiceSettings extends LocalSettings implements Storeable
2022-10-20 02:15:28 +02:00
{
public string $from_long;
public string $from;
public string $mobile;
public string $email;
public string $website;
public string $address;
public string $place;
public string $zip;
2022-11-17 23:59:43 +01:00
public string $iban;
public string $bic;
public int $rememberWeeks;
2022-10-20 02:15:28 +02:00
public static function group(): string
{
return 'bill';
}
2024-08-01 11:17:49 +02:00
/**
* @inheritdoc
*/
public function viewData(): array
2022-10-20 02:15:28 +02:00
{
2024-08-01 11:17:49 +02:00
return [
'data' => [
'from_long' => $this->from_long,
'from' => $this->from,
'mobile' => $this->mobile,
'email' => $this->email,
'website' => $this->website,
'address' => $this->address,
'place' => $this->place,
'zip' => $this->zip,
'iban' => $this->iban,
'bic' => $this->bic,
'remember_weeks' => $this->rememberWeeks,
]
];
2022-10-20 02:15:28 +02:00
}
2023-06-01 12:04:31 +02:00
public static function storeAction(): string
2022-10-20 02:15:28 +02:00
{
return SettingSaveAction::class;
}
public static function title(): string
{
return 'Rechnung';
}
}