22 lines
466 B
PHP
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;
|
|
} |