Files
alrahma_sunday_school/app/Models/TeacherSubmissionNotificationHistoryModel.php
T
2026-05-16 13:44:12 -04:00

24 lines
500 B
PHP
Executable File

<?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;
}