Blame view

controllers/StatisticsController.php 363 Bytes
1ac35977   Alexey Boroda   -Staistics started
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?php

      

      namespace artweb\artbox\ecommerce\controllers;

      

      use yii\web\Controller;

      

      /**

       * BrandController implements the CRUD actions for Brand model.

       */

      class StatisticsController extends Controller

      {

          public function actionIndex()

          {

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

          }

      }