28 lines
552 B
PHP
28 lines
552 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class PaymentCorrectionModel extends Model
|
|
{
|
|
protected $table = 'payment_corrections';
|
|
protected $primaryKey = 'id';
|
|
protected $returnType = 'array';
|
|
protected $useTimestamps = false;
|
|
|
|
protected $allowedFields = [
|
|
'payment_id',
|
|
'invoice_id',
|
|
'parent_id',
|
|
'correction_type',
|
|
'approved_refundable_cents',
|
|
'status',
|
|
'reason',
|
|
'approved_by',
|
|
'approved_at',
|
|
'created_at',
|
|
'updated_at',
|
|
];
|
|
}
|