Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
1234567891011121314151617181920212223242526 |
- <?php
-
- namespace App\Forms\Components;
-
- use Filament\Forms\Components\Field;
-
- class Invoice extends Field
- {
- protected string $view = 'forms.components.invoice';
-
- protected ?string $companyName = null;
-
- protected ?string $companyAddress = null;
-
- protected ?string $companyCity = null;
-
- protected ?string $companyState = null;
-
- protected ?string $companyZip = null;
-
- protected ?string $companyCountry = null;
-
- protected ?string $documentNumberPrefix = null;
-
- protected ?string $documentNumberDigits = null;
- }
|