getKey(); } /** * Return a key value array, containing any custom claims to be added to the JWT. * * @return array */ public function getJWTCustomClaims() { return []; } public function merchantUser() { return $this->hasOne(MerchantUser::class, 'uuid','id'); } public function viewer() { return $this->hasOne(Viewer::class, 'uuid','id'); } public function merchantAccount() { return $this->hasOne(MerchantAccount::class, 'uuid', 'id'); } public function user() { return $this->hasOne(User::class, 'uuid', 'id'); } }