user()->can('create', Company::class); } public function rules() { $rules = []; $rules['name'] = new ValidCompanyQuantity(); $rules['company_logo'] = 'mimes:jpeg,jpg,png,gif|max:10000'; // max 10000kb $rules['settings'] = new ValidSettingsRule(); if (isset($rules['portal_mode']) && ($rules['portal_mode'] == 'domain' || $rules['portal_mode'] == 'iframe')) { $rules['portal_domain'] = 'sometimes|url'; } else { $rules['portal_domain'] = 'nullable|alpha_num'; } return $rules; } protected function prepareForValidation() { $input = $this->all(); $company_settings = CompanySettings::defaults(); if (array_key_exists('settings', $input) && !empty($input['settings'])) { foreach ($input['settings'] as $key => $value) { $company_settings->{$key} = $value; } } // $company_settings->invoice_design_id = $this->encodePrimaryKey(1); // $company_settings->quote_design_id = $this->encodePrimaryKey(1); // $company_settings->credit_design_id = $this->encodePrimaryKey(1); // $input['settings'] = $company_settings; $this->replace($input); } }