Skip to content

Instantly share code, notes, and snippets.

@AlphaRomeoMike
Created December 23, 2020 15:34
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 AlphaRomeoMike/bd7ffe9704577612288cc9149d6723d2 to your computer and use it in GitHub Desktop.
Save AlphaRomeoMike/bd7ffe9704577612288cc9149d6723d2 to your computer and use it in GitHub Desktop.
Crud Model
<?php
namespace App\Models;
use CodeIgniter\Model;
class CrudModel extends Model {
protected $table = 'tbl_users';
protected $primaryKey = 'id';
protected $allowedFields = ['name', 'email', 'gender'];
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment