generated from NixLabs/lwaf
13 lines
211 B
PHP
13 lines
211 B
PHP
<?php
|
|
|
|
class AdminController
|
|
{
|
|
public function index()
|
|
{
|
|
Flight::view()->render("admin/dashboard.latte", [
|
|
"user" => Auth::user(),
|
|
"activities" => [],
|
|
]);
|
|
}
|
|
}
|