56 lines
		
	
	
		
			936 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			936 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 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';
 | |
|     }
 | |
| }
 |