user() !== null; } public function rules(): array { return [ 'type' => ['sometimes', 'in:' . implode(',', [ GroupPost::TYPE_ANNOUNCEMENT, GroupPost::TYPE_RELEASE, GroupPost::TYPE_RECRUITMENT, GroupPost::TYPE_UPDATE, ])], 'title' => ['sometimes', 'string', 'min:2', 'max:180'], 'excerpt' => ['nullable', 'string', 'max:320'], 'content' => ['nullable', 'string', 'max:40000'], 'cover_path' => ['nullable', 'string', 'max:2048'], ]; } }