Files
hpt_inventory/app/Models/RejectComment.php
2026-06-10 16:42:20 +07:00

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();
}
}