user(); return $user->can('edit', $this->group_setting); } public function rules() { return [ 'settings' => [new ValidClientGroupSettingsRule()], ]; } public function prepareForValidation() { $input = $this->all(); if (array_key_exists('settings', $input)) { $input['settings'] = $this->filterSaveableSettings($input['settings']); } $this->replace($input); } /** * For the hosted platform, we restrict the feature settings. * * This method will trim the company settings object * down to the free plan setting properties which * are saveable * * @param object $settings * @return array $settings */ private function filterSaveableSettings($settings) { $account = $this->group_setting->company->account; if (! $account->isFreeHostedClient()) { return $settings; } $saveable_casts = CompanySettings::$free_plan_casts; foreach ($settings as $key => $value) { if (! array_key_exists($key, $saveable_casts)) { unset($settings->{$key}); } } return (array)$settings; } }