*/ use HasFactory; protected $fillable = [ 'user_id', 'text', 'notable_id', 'notable_type' ]; public function user() { return $this->belongsTo(User::class); } public function notable() { return $this->morphTo(); } }