I'm creating a multi module app, and I want to, for example, list members (members module) on the home page (main module). Using name spaces $this->data['members'] = \App\Users\Models\Members::find();
but I get the error that the requested model can not be found. So how do I let modules interact with each other?