actor
Heroes with this tag
Resultaat 81-89 van 89 items.
<?php use ... class TagController extends Controller { // ... public function actionView($id) { $tag = $this->findModel($id); $heroes = new ActiveDataProvider([ 'query' => $tag->getModels()->orderBy('last_name'), ]); return $this->render('view', [ 'tag' => $tag, 'heroes' => $heroes ]); } // ... }