Files
alrahma_sunday_school/app/Models/PaymentCorrectionModel.php
T
root a30c1398a1
Tests / PHPUnit (push) Failing after 1m21s
fix financials
2026-07-18 22:57:40 -04:00

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',
];
}