EVOLUTION-NINJA
Edit File: AEPaymentModel.php
<?php namespace App\Models; use CodeIgniter\Model; class AEPaymentModel extends Model { protected $table = 'ae_payments'; protected $primaryKey = 'id'; protected $allowedFields = [ 'transaction_id', 'customer_id', 'product_id', 'dealer_name', // ✅ subsidy 'subsidy_amount', 'subsidy_payment_type', 'subsidy_upi_id', // ✅ farmer 'farmer_share', 'farmer_payment_type', 'farmer_upi_id', 'subsidy_payment_date', 'farmer_payment_date', ]; }