You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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