literature
Heroes with this tag
Resultaat 1-20 van 109 items.
- Guillaume Apollinaire
- Louis Aragon
- Isaac Asimow
- Georges Bataille
- Simone de Beauvoir
- Samuel Becket
- Heinrich Böll
- Wolfgang Borchert
- Jorge Luis Borges
- Bertolt Brecht
- Dick Bruna
- Charles Bukowski
- William S. Burroughs
- Albert Camus
- Elias Canetti
- Truman Capote
- Lewis Carroll
- Louis-Ferdinand Céline
- J.M. Coetzee
- Douglas Coupland
<?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
]);
}
// ...
}