Toggle with eager loading in form
Why eager load works in table but not form?
UserModel
UserResource
Is there any alternatives?
UserModel
UserResource
Is there any alternatives?
public function notificationPreference(): HasOne
{
return $this->hasOne(UserNotificationPreference::class);
}Forms\Components\Toggle::make('notificationPreference.is_enabled')Group::make([
Toggle::make('is_enabled')
])->relationship('notificationPreference')