<?php namespace App\Models;
use CodeIgniter\Model;

class HomeProductModel extends Model {
    protected $table = 'home_products';
    protected $primaryKey = 'id';
    protected $allowedFields = ['name', 'subtitle', 'description', 'ingredients', 'kategori_rasa', 'image'];
}