您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

DocumentFooterSection.php 420B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Filament\Forms\Components;
  3. use Filament\Forms\Components\Section;
  4. use Filament\Forms\Components\Textarea;
  5. class DocumentFooterSection extends Section
  6. {
  7. protected function setUp(): void
  8. {
  9. parent::setUp();
  10. $this->collapsible();
  11. $this->collapsed();
  12. $this->schema([
  13. Textarea::make('footer')
  14. ->columnSpanFull(),
  15. ]);
  16. }
  17. }