16 lines
271 B
PHP
16 lines
271 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class PegawaiModel extends Model
|
|
{
|
|
protected $table = 'pegawai'; // nama tabel di database
|
|
protected $primaryKey = 'id';
|
|
|
|
protected $allowedFields = [
|
|
'nama',
|
|
'unit'
|
|
];
|
|
} |