user()->hasPermissionTo('Разрешении пользователь'); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'id' => 'nullable|string|unique:users,id,'.$this->user, 'name' => 'nullable|string', 'email' => 'nullable|email|unique:users,email,'.$this->user, 'password' => 'nullable|min:6|max:32|confirmed', 'tel' => 'nullable|string', 'birthday' => 'nullable|date', 'department_id' => 'nullable|exists:departments,id', 'title_id' => 'nullable|exists:titles,id', 'active' => 'nullable|boolean', ]; } }