Please tell me in View you need to display all the platforms that the game has, I first encountered the linking via the intermediate table for the first time so public function getPlatform(){ return $this->hasMany(Platform::className(), ['platform_id' => 'fk_platform_id']) ->viaTable('game_platform', ['fk_game_id' => 'id']); } public function getPlatform(){ return $this->hasMany(Platform::className(), ['platform_id' => 'fk_platform_id']) ->viaTable('game_platform', ['fk_game_id' => 'id']); } all in the GamePlatform model
|

все это в модели GamePlatformthis method should be in Game - lyhoshva