sterzycom/panel/app/controllers/dashboard.php

13 lines
230 B
PHP
Raw Normal View History

<?php
class DashboardController extends Kirby\Panel\Controllers\Base {
public function index() {
return $this->screen('dashboard/index', panel()->site(), array(
'widgets' => new Kirby\Panel\Widgets()
));
}
}