film
Heroes with this tag
Resultaat 21-40 van 140 items.
- John Cleese
- Sean Connery
- Francis Ford Coppola
- Bryan Cranston
- Michael Crichton
- Roger Deakins
- Catherine Deneuve
- Gérard Depardieu
- Marlene Dietrich
- Tan Dun
- Clint Eastwood
- Peter Falk
- Claude Faraldo
- Colin Farrell
- Rainer Werner Fassbinder
- Federico Fellini
- Andréa Ferréol
- Marco Ferreri
- W.C. Fields
- David Fincher
<?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
]);
}
// ...
}