changed logic in user model #143

Merged
jothi merged 1 commits from ranjith-dev into master 2026-01-27 06:24:32 +00:00
Showing only changes of commit b419a538dc - Show all commits

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');
}
}