EVOLUTION-NINJA
Edit File: NotificationModel.php
<?php namespace App\Models; use CodeIgniter\Model; class NotificationModel extends Model { protected $table ='notification_table'; protected $allowedFields = ['id','user_id','type','sending_to','message','status','created_at','created_by','time','links_main']; } ?>