for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Pages\Http\Controllers\Back;
use Arcanesoft\Pages\Bases\FoundationController as Controller;
/**
* Class DashboardController
*
* @package Arcanesoft\Pages\Http\Controllers\Back
* @author ARCANEDEV <[email protected]>
*/
class DashboardController extends Controller
{
/* ------------------------------------------------------------------------------------------------
| Constructor
| ------------------------------------------------------------------------------------------------
* Instantiate the controller.
public function __construct()
parent::__construct();
$this->setCurrentPage('cms-dashboard');
}
| Main Functions
public function index()
$this->authorize('cms.dashboard.stats');
$title = 'CMS - Dashboard';
$this->setTitle($title);
$this->addBreadcrumb('Statistics');
return $this->view('backend.dashboard');