मैंने Yii2 में अपने मॉडल में निम्नलिखित फ़ंक्शन जोड़े:
public function getNext() {
$next = $this->find()->where(['>', 'id', $this->id])->one();
return $next;
}
public function getPrev() {
$prev = $this->find()->where(['<', 'id', $this->id])->orderBy('id desc')->one();
return $prev;
}