'integer', 'post_id' => 'integer']; public static function getPost(int $account_id) { return Db::table("account_post") ->leftJoin('post', 'post.post_id', '=', 'account_post.post_id') ->where('account_post.account_id', $account_id) ->select(["post.post_id", "post.post_name"])->get()->toArray(); } }