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

CustomSection.php 273B

12345678910111213
  1. <?php
  2. namespace App\Filament\Forms\Components;
  3. use Filament\Forms\Components\Section;
  4. use Filament\Support\Concerns\CanBeContained;
  5. class CustomSection extends Section
  6. {
  7. use CanBeContained;
  8. protected string $view = 'filament.forms.components.custom-section';
  9. }