Ejemplo n.º 1
0
 public function actionView($slug)
 {
     $item = Catalog::get($slug);
     if (!$item) {
         throw new NotFoundHttpException('Item not found.');
     }
     return $this->render('view', ['item' => $item, 'addToCartForm' => new \app\models\AddToCartForm()]);
 }