2022-10-20 02:15:28 +02:00
|
|
|
<?php
|
|
|
|
|
2022-11-07 16:18:11 +01:00
|
|
|
namespace App\Letter;
|
2022-10-20 02:15:28 +02:00
|
|
|
|
|
|
|
use App\Setting\LocalSettings;
|
|
|
|
|
2022-11-07 16:18:11 +01:00
|
|
|
class LetterSettings extends LocalSettings
|
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;
|
|
|
|
|
|
|
|
public static function group(): string
|
|
|
|
{
|
|
|
|
return 'bill';
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function slug(): string
|
|
|
|
{
|
|
|
|
return 'bill';
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function indexAction(): string
|
|
|
|
{
|
|
|
|
return SettingIndexAction::class;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function saveAction(): string
|
|
|
|
{
|
|
|
|
return SettingSaveAction::class;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function title(): string
|
|
|
|
{
|
|
|
|
return 'Rechnung';
|
|
|
|
}
|
|
|
|
}
|