request->get('type', 'customer'); $company_id = $this->request->get('company_id'); // Check if store or update if ($this->getMethod() == 'PATCH') { $id = is_numeric($this->$type) ? $this->$type : $this->$type->getAttribute('id'); } else { $id = null; } if (($this->request->get('create_user', 'false') === 'true') && empty($this->request->get('user_id'))) { $required = 'required|'; } if (!empty($this->request->get('email'))) { $email = 'email|unique:contacts,NULL,' . $id . ',id,company_id,' . $company_id . ',type,' . $type . ',deleted_at,NULL'; } return [ 'type' => 'required|string', 'name' => 'required|string', 'email' => $email, 'user_id' => 'integer|nullable', 'currency_code' => 'required|string|currency', 'password' => $required . 'confirmed', 'enabled' => 'integer|boolean', ]; } }