| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function fields(): Fields |
||
| 25 | { |
||
| 26 | return new Fields([ |
||
| 27 | InputField::make('client.app_name') |
||
| 28 | ->label('Site naam') |
||
| 29 | ->description('Naam van de applicatie. Dit wordt getoond in o.a. de mail communicatie.') |
||
| 30 | ->translatable(['nl' => 'nl', 'fr' => 'fr']), |
||
| 31 | InputField::make('contact.email') |
||
| 32 | ->label('Webmaster email') |
||
| 33 | ->description('Het emailadres van de webmaster. Hierop ontvang je standaard alle contactnames.'), |
||
| 34 | InputField::make('contact.name') |
||
| 35 | ->label('Webmaster naam') |
||
| 36 | ->description('Voor en achternaam van de webmaster.'), |
||
| 37 | ]); |
||
| 49 | } |