Merge pull request 'changed logic in user model' (#143) from ranjith-dev into master
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled

Reviewed-on: #143
This commit was merged in pull request #143.
This commit is contained in:
2026-01-27 06:24:31 +00:00

View File

@@ -68,6 +68,6 @@ class User extends Authenticatable implements FilamentUser
public function pushSubscriptions()
{
return $this->morphMany(PushSubscription::class, 'subscribable');
return $this->morphMany(PushSubscription::class, 'subscribable_id');
}
}