public function edit($postId, $languageCode)
    {
        $postTranslation = PostTranslation::where('post_id', $postId)
                        ->where('locale', $languageCode)
                        ->first();