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

21 lines
580 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class MotorApiLogModel extends Model
{
protected $table = 'motor_api_log';
protected $primaryKey = 'id';
protected $useAutoIncrement = true;
protected $returnType = 'array';
protected $useSoftDeletes = false;
protected $protectFields = true;
protected $allowedFields = [
'quote_id', 'integration_id', 'endpoint', 'request_body', 'response_body',
'http_status', 'error_code', 'duration_ms', 'created_at',
];
protected $useTimestamps = false;
}