Logo white

Yarik / artbox-basic

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • artbox-basic
  • backend
  • views
  • site
  • index.php
  • -Bar tabs
    4acbd19d
    Alexey Boroda authored
    2017-03-29 20:09:46 +0300  
    Browse Code ยป
index.php 396 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
<?php
    
    /**
     * @var View $this
     */
    
    use artbox\gentelella\widgets\XPanel;
    use backend\assets\AnalyticsAsset;
    use yii\web\View;
    
    $this->title = 'Artbox !';
    
    AnalyticsAsset::register($this);
?>

<?php $panel = XPanel::begin(
    [
        'title'   => 'Hello!',
        'toolbar' => false,
    ]
); ?>

<div id="chart"></div>

<?php $panel::end(); ?>