*/ protected $fillable = [ 'creator_id', 'creator_type', 'start_place_id', 'name', 'version', 'privileges', 'privacy', 'unlisted' ]; /** * The creator of this universe. */ public function creator() { return $this->belongsTo(User::class, 'creator_id'); } /** * The start place of this universe. */ public function start_place() { return $this->belongsTo(Asset::class, 'start_place_id'); } }