18 lines
379 B
PHP
18 lines
379 B
PHP
<?php
|
|
namespace App\Controllers;
|
|
|
|
class Home
|
|
{
|
|
public function index()
|
|
{
|
|
echo "This is index of home"; // Nanti di replace sama twig view ke App\Views\Data\pengumuman.html
|
|
return true;
|
|
}
|
|
|
|
public function login()
|
|
{
|
|
echo "You have to login"; // Nanti di replace sama twig view ke App\Views\Access\login.html
|
|
return true;
|
|
}
|
|
}
|