mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-23 19:24:03 +01:00
12 lines
232 B
PHP
12 lines
232 B
PHP
<?php
|
|
|
|
class DashboardController extends Controller {
|
|
/**
|
|
* Shows the dashboard view.
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function showDashboard() {
|
|
return View::make('dashboard.index');
|
|
}
|
|
}
|