Browse Source

Fix

proxy_request
Daan Geurts 5 years ago
parent
commit
7296146aad
  1. 4
      src/model/AppleNotification.php

4
src/model/AppleNotification.php

@ -8,6 +8,10 @@ class AppleNotification extends Model
{
public $guarded = [];
protected $casts = [
'payload' => 'array',
];
public static function storeNotification(string $notificationType, array $notificationPayload)
{
return self::create(

Loading…
Cancel
Save