PuttyController.php 889 Bytes
<?php
namespace frontend\controllers;

use Yii;
use yii\web\Controller;


/**
 * Site controller
 */
class PuttyController extends Controller
{

    public function actionCatalog(){
        return $this->render('catalog');
    }

    public function actionItemCardOpen(){
        return $this->render('item-card-open');
    }

    public function actionCategory(){
        return $this->render('category');
    }

    public function actionManufacturers(){
        return $this->render('manufacturers');
    }

    public function actionBasketStepFirst(){
        return $this->render('basket-step-01');
    }

    public function actionBasketStepSecond(){
        return $this->render('basket-step-02');
    }


    public function actionContacts(){
        return $this->render('contacts');
    }

    public function actionDelivery(){
        return $this->render('delivery');
    }

}