*/ use HasFactory; protected $fillable = ['incident_id', 'status', 'body', 'created_by']; public function incident(): BelongsTo { return $this->belongsTo(Incident::class); } }