EVOLUTION-NINJA
Edit File: ProductModel.php
<?php namespace App\Models; use CodeIgniter\Model; class ProductModel extends Model { protected $table = 'products'; protected $primaryKey = 'product_id'; protected $allowedFields = [ 'model_name', 'product_category', 'rc_price', 'basic_price', 'ndp', 'gst_percent', 'status' ]; } // namespace App\Models; // use CodeIgniter\Model; // class ProductModel extends Model // { // protected $table = 'products'; // protected $primaryKey = 'product_id'; // protected $allowedFields = [ // 'model_name', // 'product_category', // ✅ changed // 'rc_price', // 'basic_price', // 'ndp', // 'ndp_with_gst', // ✅ added // 'gst_difference', // 'ae_commission', // 'dealer_margin', // 'billing_price', // 'status' // ]; // }