belongsTo(Account::class); } /** * Get the users associated with the vault. * * @return BelongsToMany */ public function users() { return $this->belongsToMany(User::class)->withTimestamps()->withPivot('permission'); } }