France
Heroes with this tag
Resultaat 21-40 van 60 items.
- Claude Faraldo
- Andréa Ferréol
- Laurent Fignon
- Jean Genet
- Jean-Luc Godard
- René Goscinny
- Stéphane Grapelli
- Michel Houellebecq
- Isabelle Huppert
- Eugène Ionesco
- Alfred Jarry
- Anna Karina
- Jacques-Henri Lartigue
- Jonathan Littell
- Yo-Yo Ma
- Henri Matisse
- Philippe Noiret
- Michel Piccoli
- Marcel Proust
- Raymond Queneau
<?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 ]); } // ... }