29 lines
590 B
PHP
29 lines
590 B
PHP
<?php
|
|
|
|
namespace Modules\Admin\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Modules\Admin\Database\factories\WarningFactory;
|
|
|
|
class Warning extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'tbl_warnings';
|
|
protected $primaryKey = 'warning_id';
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected $fillable = [
|
|
'employee_id',
|
|
'subject',
|
|
'warning_date',
|
|
'description',
|
|
'remarks',
|
|
'status',
|
|
'createdBy',
|
|
'updatedBy',
|
|
];
|
|
}
|