EVOLUTION-NINJA
Edit File: UserProfileModel.php
<?php namespace App\Models; use CodeIgniter\Model; class UserProfileModel extends Model { protected $table ='user_profile'; protected $allowedFields = ['id','user_id','profile_pic','name','present_des','qualification','special_int','publication','created_at','created_by','updated_at','updated_by']; } ?>