refactor: change PushNotification model array cast from 'data' to 'subscriptions'

This commit is contained in:
Yoga Pangestu 2026-02-10 16:00:32 +07:00
parent 307213c7d2
commit 15c36b46db

View File

@ -12,7 +12,7 @@ class PushNotification extends Model
protected function casts(): array
{
return [
'data' => 'array',
'subscriptions' => 'array',
];
}