11 lines
169 B
PHP
11 lines
169 B
PHP
<?php
|
|
|
|
namespace Admin;
|
|
|
|
class HomeController extends \BaseController
|
|
{
|
|
public function index($f3)
|
|
{
|
|
$this->renderView('views/admin/index.html');
|
|
}
|
|
} |