Commit 1ac359771cc26b8e6b02a0e360a302e7ecd248d7

Authored by Alexey Boroda
1 parent 55123523

-Staistics started

controllers/StatisticsController.php 0 → 100755
  1 +<?php
  2 +
  3 + namespace artweb\artbox\ecommerce\controllers;
  4 +
  5 + use yii\web\Controller;
  6 +
  7 + /**
  8 + * BrandController implements the CRUD actions for Brand model.
  9 + */
  10 + class StatisticsController extends Controller
  11 + {
  12 + public function actionIndex()
  13 + {
  14 + return $this->render('index');
  15 + }
  16 + }
... ...
views/statistics/index.php 0 → 100644
  1 +<?php
  2 + use yii\web\View;
  3 +
  4 + /**
  5 + * @var View $this
  6 + */
  7 +
  8 +?>
  9 +
  10 +<div class="box box-default">
  11 + <div class="box-header with-border">
  12 + <h3 class="box-title">Collapsable</h3>
  13 + <div class="box-tools pull-right">
  14 + <button class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i></button>
  15 + </div><!-- /.box-tools -->
  16 + </div><!-- /.box-header -->
  17 + <div class="box-body">
  18 + The body of the box
  19 + </div><!-- /.box-body -->
  20 +</div><!-- /.box -->
... ...