Logo white

Administrator / test_1

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • test_1
  • frontend
  • controllers
  • CartController.php
  • first commit from local
    118a6488
    Administrator authored
    2015-11-13 11:07:18 +0200  
    Browse Code ยป
CartController.php 407 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
<?php
/**
 * Created by PhpStorm.
 * User: vitaliy
 * Date: 08.11.15
 * Time: 22:06
 */

namespace frontend\controllers;

use Yii;
use yii\web\Controller;

class CartController extends Controller {
    public $layout = '/internal';

    public function actionIndex()
    {

        return $this->render('index');
    }

    public function actionStep()
    {

        return $this->render('step');
    }


}