film
Heroes with this tag
Resultaat 41-60 van 140 items.
- Albert Finney
- Michael Gambon
- James Gandolfini
- Terry Gilliam
- Crispin Glover
- Jean-Luc Godard
- Matt Groening
- Gene Hackman
- Oliver Hardy
- Rutger Hauer
- Alfred Hitchcock
- Dustin Hoffman
- Philip Seymour Hoffman
- Anthony Hopkins
- Dennis Hopper
- Helen Hunt
- Isabelle Huppert
- Samuel L. Jackson
- Miklós Jancsó
- Gottfried John
<?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
]);
}
// ...
}