Files
snipe-it/app/controllers/admin/DashboardController.php
T
Tamás Roncsák 132578bfe3 Revert "set filemode"
This reverts commit c2a1e39b54.
2015-02-24 09:32:31 +01:00

20 lines
329 B
PHP
Executable File

<?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');
}
}