EVOLUTION-NINJA
Edit File: CreateCustomerModel.php
<?php namespace App\Models; use CodeIgniter\Model; class CreateCustomerModel extends Model { protected $table = 'create_customer'; // your table name protected $primaryKey = 'id'; protected $allowedFields = [ 'farmer_id', 'farmer_name', 'share_amount', 'taluk', 'address', 'dealer_id', 'category', 'fid_no', 'unique_code', 'phone_no', 'engine_no', 'chasis_no', 'utr_no', 'paid_amount', 'payment_type', 'payment_file', 'upi', 'aadhar_no', 'photo', 'date', 'product_type', 'product_id', 'rc_price', 'gst_percent', 'basic_price', 'invoice_file', ]; }