Files
snipe-it/app/controllers/admin/DashboardController.php
T
Tamás Roncsák c2a1e39b54 set filemode
2015-02-24 09:29:58 +01:00

20 lines
329 B
PHP

<?php namespace Controllers\Admin;
use AdminController;
use View;
class DashboardController extends AdminController
{
/**
* Show the administration dashboard page.
*
* @return View
*/
public function getIndex()
{
// Show the page
return View::make('backend/dashboard');
}
}