Step::make('Course Details')
->description('Describe the kind of course and experience participants can expect when they take part in your event.')
->schema([
Select::make('course.profiles')
->label('Course Profile')
->relationship('course.profiles')
->options(\App\Models\CourseProfile::pluck('name', 'id'))
->native(false)
->multiple(),
Step::make('Course Details')
->description('Describe the kind of course and experience participants can expect when they take part in your event.')
->schema([
Select::make('course.profiles')
->label('Course Profile')
->relationship('course.profiles')
->options(\App\Models\CourseProfile::pluck('name', 'id'))
->native(false)
->multiple(),