Germany
Heroes with this tag
Resultaat 1-20 van 42 items.
- Hans Arp
- Johann Sebastian Bach
- Blixa Bargeld
- Pina Bausch
- Joseph Beuys
- Heinrich Böll
- Wolfgang Borchert
- Klaus Maria Brandauer
- Bertolt Brecht
- Daniel Cohn-Bendit
- Marlene Dietrich
- Albert Einstein
- Hans Magnus Enzensberger
- Rainer Werner Fassbinder
- Johann Carl Friedrich Gauss
- Johann Wolfgang von Goethe
- Günther Grass
- Nina Hagen
- Werner Heisenberg
- Ralf Hütter
<?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
]);
}
// ...
}