EVOLUTION-NINJA
Edit File: AECalculatorModel.php
<?php namespace App\Models; use CodeIgniter\Model; class AECalculatorModel extends Model { protected $table = 'ae_calculator_history'; protected $primaryKey = 'id'; protected $allowedFields = [ 'product_id', 'model_name', 'rc_price', 'basic_price', 'ndp', 'gst_percent', 'ae_commission_percent', 'ae_commission', 'gst_on_ae_commission', 'billing_price', 'gst_on_rc_price', 'gst_on_ndp', 'gst_difference', 'ndp_with_gst', 'dealer_margin' ]; }