$query->whereHas('type', function ($item) use ($keyword) {
                    $item->whereRaw('typeName LIKE ?', ["%{$keyword}%"]);
                })->orWhereHas('content.type', function ($content) use ($keyword) {
                    $content->whereRaw('typeName LIKE ?', ["%{$keyword}%"]);
                })->orWhereHas('content.content.type', function ($content) use ($keyword) {