<?php
class DashboardController extends ControllerBase
{
public function initialize()
{
$this->view->setVar('body_css', "g-sidenav-show bg-gray-100");
$this->view->setVar('dashboard_js', true);
$this->view->setVar('page_title', "Dashboard");
}
public function indexAction()
{
$this->view->pick('dashboard/index');
}
}