11 lines
179 B
PHP
11 lines
179 B
PHP
<?php
|
|
|
|
/**
|
|
* AKA the Management Panel.
|
|
*/
|
|
class DashboardController extends Controller {
|
|
public function showDashboard() {
|
|
return View::make('dashboard.index');
|
|
}
|
|
}
|