film
Heroes with this tag
Resultaat 1-20 van 140 items.
- 007
- Isabelle Adjani
- Woody Allen
- Gerry Anderson
- Michelangelo Antonioni
- Lauren Bacall
- Angelo Badalamenti
- Josephine Baker
- Brigitte Bardot
- Ellen Barkin
- Jean-Paul Belmondo
- Ingmar Bergman
- Bernardo Bertolucci
- Humphrey Bogart
- Lorraine Bracco
- Klaus Maria Brandauer
- Marlon Brando
- Luis Buñuel
- Dan Castellanata
- Charles Chaplin
<?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
]);
}
// ...
}