mikael-zakaria 77f15bfc94 first commit
2025-11-11 09:14:25 +07:00

12 lines
150 B
PHP

<?php
namespace App\Controllers;
class Admin extends BaseController
{
public function index()
{
return view('admin/index');
}
}