Skip to content

Instantly share code, notes, and snippets.

@blogcacanid
Created July 6, 2020 02:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blogcacanid/fa27a1abe91ddc5aa76db6275a0b17d3 to your computer and use it in GitHub Desktop.
Save blogcacanid/fa27a1abe91ddc5aa76db6275a0b17d3 to your computer and use it in GitHub Desktop.
PegawaiModel.php
<?php
namespace App\Models;
use CodeIgniter\Database\ConnectionInterface;
use CodeIgniter\Model;
class PegawaiModel extends Model
{
protected $table = 'pegawai';
protected $allowedFields = ['nip', 'nama_pegawai', 'alamat'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment