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

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