test
Education
February 11, 2026
By Admin
namespace App\Models;
use CodeIgniter\Model;
class NewsModel extends Model
{
protected $table = 'news';
protected $primaryKey = 'id';
protected $allowedFields = ['title','category','content','date'];
}