Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

CustomSection.php 278B

123456789101112131415
  1. <?php
  2. namespace App\Forms\Components;
  3. use Filament\Forms\Components\Component;
  4. class CustomSection extends Component
  5. {
  6. protected string $view = 'forms.components.custom-section';
  7. public static function make(): static
  8. {
  9. return app(static::class);
  10. }
  11. }