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

22 lines
652 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class MotorPaymentModel extends Model
{
protected $table = 'motor_payment';
protected $primaryKey = 'id';
protected $useAutoIncrement = true;
protected $returnType = 'array';
protected $useSoftDeletes = false;
protected $protectFields = true;
protected $allowedFields = [
'quote_id', 'application_id', 'digit_payment_id', 'request_reference',
'payment_mode', 'cancel_return_url', 'success_return_url',
'dispatcher_response', 'premium', 'payment_status', 'created_at',
];
protected $useTimestamps = false;
}