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

24 lines
500 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class TeacherSubmissionNotificationHistoryModel extends Model
{
protected $table = 'teacher_submission_notification_history';
protected $primaryKey = 'id';
protected $allowedFields = [
'teacher_id',
'class_section_id',
'admin_id',
'notification_category',
'message',
'status',
'school_year',
'semester',
'sent_at',
];
protected $useTimestamps = false;
}