document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2.  
  3.  
  4. namespace App\\Models;
  5.  
  6.  
  7. use CodeIgniter\\Model;
  8.  
  9.  
  10. class MhsModel extends Model
  11. {
  12. protected $table = 'mahasiswa';
  13. protected $primaryKey = 'NRP';
  14.  
  15.  
  16. protected $useAutoIncrement = false;
  17. protected $allowedFields = ['NRP', 'Nama', 'Alamat', 'NoHP', 'Jurusan'];
  18.  
  19. }
');