<?php namespace App\Models;
use CodeIgniter\Model;

class HomeSettingModel extends Model {
    protected $table = 'home_settings';
    protected $primaryKey = 'id';
    protected $allowedFields = ['key_name', 'value_text'];
}