30 lines
521 B
PHP
30 lines
521 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class RejectComment extends BaseModel
|
|
{
|
|
public $timestamps = false;
|
|
use HasFactory;
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
|
|
protected $fillable = [
|
|
'sample_condition_id',
|
|
'reject_comment',
|
|
'lab_id',
|
|
BaseModel::CREATED_AT_FIELD,
|
|
BaseModel::CREATED_BY_FIELD
|
|
];
|
|
|
|
public static function boot()
|
|
{
|
|
parent::boot();
|
|
}
|
|
|
|
}
|