Zahrin Azam

Results 9 issues of Zahrin Azam

currently ```php public function relationNames() { return [ //....all relations name ]; } ``` suggestion ```php public static function relationNames() { return [ //....all relations name ]; } ``` so...

should only exclude junction table from expandable

Type 🐛 ```php class Company () { ... public function getBranches() { return $this->hasMany(\common\models\Branch::className(), ['company_id' => 'id']) ->andWhere(['type' =< 10 ]); } } ``` on update company record, those record...