<?php

namespace App\Models;

use CodeIgniter\Model;

class Tentang_model extends Model
{
    protected $table            = 'tabel_tentang';
    protected $primaryKey       = 'id_tentang';
    protected $allowedFields    = ['sub_tentang', 'profil', 'visi', 'misi'];

    public function getTentang()
    {
        return $this->first();
    }

    public function updateTentang($data)
    {
        return $this->update(1, $data); 
    }
}