Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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