選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }