20 lines
294 B
PHP
Executable File
20 lines
294 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');
|
|
}
|
|
|
|
}
|