nhance/app/Models/MotorKycModel.php
2026-07-21 09:32:13 +05:30

22 lines
621 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class MotorKycModel extends Model
{
protected $table = 'motor_kyc';
protected $primaryKey = 'id';
protected $useAutoIncrement = true;
protected $returnType = 'array';
protected $useSoftDeletes = false;
protected $protectFields = true;
protected $allowedFields = [
'quote_id', 'kyc_id', 'kyc_verification_status', 'reference_id', 'link',
'mismatch_type', 'id_verification_doc_type', 'address_verification_doc_type',
'mode', 'checked_at',
];
protected $useTimestamps = false;
}