© 2026 Hedgehog Software, LLC
id, name, description
CheckboxList::make('technologies') ->required() ->relationship(titleAttribute: 'name');
->descriptions(fn() => Technologies::pluck('description', 'id')->toArray());
fn(Model $record)
public function technologies(): BelongsToMany { return $this->belongsToMany(Technology::class); }