選択できるのは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. }