Forms\Components\Repeater::make('dates')
->label("Termine")
->schema([
Forms\Components\Select::make('location')
->label('Ort')
->required()
->relationship('location', 'title'),
Forms\Components\DatePicker::make('date')
->timezone('Europe/Berlin')
->label("Datum")
->required(),
Forms\Components\TimePicker::make('start_time')
->timezone('Europe/Berlin')
->seconds(false)
->label("Startzeit")
->required(),
Forms\Components\TimePicker::make('end_time')
->timezone('Europe/Berlin')
->seconds(false)
->label("Endzeit")
->required(),
])
->columns(2)
->defaultItems(1)
->cloneable()
Forms\Components\Repeater::make('dates')
->label("Termine")
->schema([
Forms\Components\Select::make('location')
->label('Ort')
->required()
->relationship('location', 'title'),
Forms\Components\DatePicker::make('date')
->timezone('Europe/Berlin')
->label("Datum")
->required(),
Forms\Components\TimePicker::make('start_time')
->timezone('Europe/Berlin')
->seconds(false)
->label("Startzeit")
->required(),
Forms\Components\TimePicker::make('end_time')
->timezone('Europe/Berlin')
->seconds(false)
->label("Endzeit")
->required(),
])
->columns(2)
->defaultItems(1)
->cloneable()