Files
alrahma_sunday_school_api/app/Models/TeacherSubmissionNotificationHistory.php
T
2026-03-05 12:29:37 -05:00

22 lines
466 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TeacherSubmissionNotificationHistory extends Model
{
protected $table = 'teacher_submission_notification_history';
protected $fillable = [
'teacher_id',
'class_section_id',
'admin_id',
'notification_category',
'message',
'status',
'school_year',
'semester',
'sent_at',
];
public $timestamps = false;
}