Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Invoice.php 543B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Forms\Components;
  3. use Filament\Forms\Components\Field;
  4. class Invoice extends Field
  5. {
  6. protected string $view = 'forms.components.invoice';
  7. protected ?string $companyName = null;
  8. protected ?string $companyAddress = null;
  9. protected ?string $companyCity = null;
  10. protected ?string $companyState = null;
  11. protected ?string $companyZip = null;
  12. protected ?string $companyCountry = null;
  13. protected ?string $documentNumberPrefix = null;
  14. protected ?string $documentNumberDigits = null;
  15. }