async getSingleLoanById(loanId) {
    try {
      const { rows } = await this.selectWhere('*', 'id=$1', [loanId]);
      return rows[0];
    } catch (error) {