nhance_partner_be/app/Models/AgentModel.php
2025-09-01 18:01:41 +05:30

29 lines
604 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class AgentModel extends Model
{
protected $table = 'partner_agent';
protected $primaryKey = 'id';
protected $allowedFields = [
'name',
'email',
'mobile',
'address',
'certificate_file_name',
'incentive_file_name',
'email_otp',
'firebase_device_token',
'is_active',
'created_by',
'created_on',
'updated_by',
'updated_on'
];
protected $useTimestamps = false; // we manually handle created_on & updated_on
}