lepisi-pengumuman/App/Controllers/Posts.php

24 lines
596 B
PHP

<?php
namespace App\Controllers;
class Posts
{
public function index()
{
echo "This is index of posts."; // Nanti di replace sama twig view ke App\Views\Data\pengumuman.html
return true;
}
public function entry()
{
echo "You can entry new data here."; // Nanti di replace sama twig view ke App\Views\Data\new_pengumuman.html
return true;
}
public function edit($id)
{
echo "You can edit exists data with id $id here"; // Nanti di replace sama twig view ke App\Views\Data\edit_pengumuman.html
return true;
}
}