Advertisement
Novinaldi

Ci4-ModelMhs-APIServer

Jan 9th, 2022
1,015
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Models;
  4.  
  5. use CodeIgniter\Model;
  6.  
  7. class Modelmhs extends Model
  8. {
  9.     protected $table      = 'mahasiswa';
  10.     protected $primaryKey = 'mhsnobp';
  11.  
  12.     protected $allowedFields = ['mhsnobp', 'mhsnama', 'mhsalamat', 'mhstelp'];
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement