for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Foundation\Http\Controllers\Admin;
/**
* Class DashboardController
*
* @package Arcanesoft\Foundation\Http\Controllers\Admin
* @author ARCANEDEV <[email protected]>
*/
class DashboardController extends Controller
{
/* ------------------------------------------------------------------------------------------------
| Main Functions
| ------------------------------------------------------------------------------------------------
* Show the foundation dashboard.
* @return string
public function index()
$this->setCurrentPage('foundation-home');
$this->setTitle($title = 'Dashboard');
$this->addBreadcrumb($title);
return $this->view('admin.dashboard');
}