use RajChotaliya\ApplePushNotificationService\ApplePushNotificationService;
$deviceToken = 'your_device_token';
$title = 'Hello from APNs!';
$body = 'This is a test push notification.';
$apns = new ApplePushNotificationService($deviceToken, $title, $body);
$response = $apns->sendNotification();
use RajChotaliya\ApplePushNotificationService\ApplePushNotificationService;
$deviceToken = 'your_device_token';
$title = 'Hello from APNs!';
$body = 'This is a test push notification.';
$apns = new ApplePushNotificationService($deviceToken, $title, $body);
$response = $apns->sendNotification();
echo $response['message'];