Files
alrahma_sunday_school/app/Models/ReimbursementBatchItemModel.php
T
2026-02-10 22:11:06 -05:00

26 lines
481 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class ReimbursementBatchItemModel extends Model
{
protected $table = 'reimbursement_batch_items';
protected $primaryKey = 'id';
protected $allowedFields = [
'batch_id',
'expense_id',
'reimbursement_id',
'admin_id',
'assigned_at',
'unassigned_at',
'notes',
'school_year',
'semester',
];
protected $useTimestamps = false;
}