EVOLUTION-NINJA
Edit File: UserModel.php
<?php namespace App\Models; use CodeIgniter\Model; class UserModel extends Model { protected $table = 'user'; protected $primaryKey = 'id'; protected $allowedFields = [ 'name', 'email', 'phone', 'password', 'promoter_id','role','role_name','created_at' ]; }