IMMREX7
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class TeacherNotice extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'idEmployeeNoticeboard',
'idFinancialYear',
'idSchool',
'idEmployee',
'cardholder',
'idDesignation',
'idDepartment',
'subject',
'notice',
'noticeFile',
'publishDate',
'isPublished',
'created_at',
'updated_at',
];
}
Copyright © 2021 -