EVOLUTION-NINJA
Edit File: AETransactionModel.php
<?php // namespace App\Models; // use CodeIgniter\Model; // class AETransactionModel extends Model // { // protected $table = 'ae_transactions'; // protected $primaryKey = 'id'; // protected $allowedFields = [ // 'customer_id', // 'product_id', // 'rc_price', // 'subsidy_amount', // 'smm_subsidy', // 'state_subsidy', // 'farmer_share', // 'ae_commission', // 'gst_difference', // 'billing_price', // 'smm_utr1', // 'utr1_date', // 'state_utr2', // 'utr2_date', // 'smm_tds1', // 'state_tds2', // 'smm_gst1', // 'state_gst2', // 'fsn_return_utr_no', // 'payment_status', // 'paid_amount', // 'balance_amount', // 'dealer_name' // ]; // } namespace App\Models; use CodeIgniter\Model; class AETransactionModel extends Model { protected $table = 'ae_transactions'; protected $primaryKey = 'id'; protected $allowedFields = [ 'customer_id', 'product_id', 'rc_price', 'subsidy_amount', 'smm_subsidy', 'state_subsidy', 'farmer_share', 'ae_commission', 'gst_difference', 'billing_price', 'smm_utr1', 'utr1_date', 'state_utr2', 'utr2_date', 'smm_tds1', 'state_tds2', 'smm_gst1', 'state_gst2', 'fsn_return_utr_no', 'payment_status', 'paid_amount', 'balance_amount', 'dealer_name' ]; }