for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @package Dashboard
* @author Ian Olson <[email protected]>
* @license MIT
* @copyright 2015, Laraflock
* @link https://github.com/laraflock
*/
namespace Laraflock\Dashboard\Controllers;
class DashboardController extends BaseDashboardController
{
* The dashboard.
*
* @return \Illuminate\View\View
public function dashboard()
return $this->view('dashboard.index');
}