How do I eager load this?
Select::make('roles')
->required()
->multiple()
->relationship('roles', 'name')
I want the role names to be populated without having to start typing to find them.. I know this seems obvious and I recall reading it in the documentation previously, but I can't seem to find it now.
->required()
->multiple()
->relationship('roles', 'name')
I want the role names to be populated without having to start typing to find them.. I know this seems obvious and I recall reading it in the documentation previously, but I can't seem to find it now.