typePublic()->andWhere(['>', 'depth', 0])->all(); } public function find($id): ?Page { return Page::findOne($id); } public function findBySlug($slug): ?Page { return Page::find()->typePublic()->andWhere(['slug' => $slug])->andWhere(['>', 'depth', 0])->one(); } public function findPreview($id): ?Page { return Page::find()->andWhere(['id' => $id])->one(); } }