*/ protected $fillable = [ 'creator_id', 'creator_type', 'content' ]; /** * The creator of this status. */ public function creator() { return $this->belongsTo(User::class, 'creator_id'); } }