<?php

namespace App\Models;

use CodeIgniter\Model;

class Kemitraan_model extends Model
{
    protected $table         = 'kemitraan';
    protected $primaryKey    = 'id_kemitraan';
    protected $allowedFields = [];

    // tambah
    public function tambah($data)
    {
        $builder = $this->db->table('kemitraan');
        $builder->insert($data);
    }

}
