Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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