This paste brought to you by Pastebin. View Raw

  1. <?php
  2.  
  3. namespace App\Models;
  4.  
  5. use CodeIgniter\Model;
  6.  
  7. class MhsModel extends Model
  8. {
  9.     protected $table      = 'mahasiswa';
  10.     protected $primaryKey = 'NRP';
  11.  
  12.     protected $useAutoIncrement = false;
  13.     protected $allowedFields = ['NRP', 'Nama', 'Alamat', 'NoHP', 'Jurusan'];
  14. }