58 lines
968 B
PHP
58 lines
968 B
PHP
<?php
|
|
|
|
namespace App\Invoice;
|
|
|
|
use App\Setting\Contracts\Indexable;
|
|
use App\Setting\Contracts\Storeable;
|
|
use App\Setting\LocalSettings;
|
|
|
|
class InvoiceSettings extends LocalSettings implements Indexable, Storeable
|
|
{
|
|
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 string $iban;
|
|
|
|
public string $bic;
|
|
|
|
public int $rememberWeeks;
|
|
|
|
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 storeAction(): string
|
|
{
|
|
return SettingSaveAction::class;
|
|
}
|
|
|
|
public static function title(): string
|
|
{
|
|
return 'Rechnung';
|
|
}
|
|
}
|