EVOLUTION-NINJA
Edit File: Subscription_paymentModel.php
<?php namespace App\Models; use CodeIgniter\Model; class Subscription_paymentModel extends Model { protected $table = 'subscription_payment'; protected $allowedFields = ['id','user_id','pay_id','amount','email','paid_date']; } ?>