Skip to content

Instantly share code, notes, and snippets.

@forethoughtde
Last active May 13, 2019 00:11
Show Gist options
  • Save forethoughtde/693f8ea1bb0fa01d3db64e2f8415a2f5 to your computer and use it in GitHub Desktop.
Save forethoughtde/693f8ea1bb0fa01d3db64e2f8415a2f5 to your computer and use it in GitHub Desktop.
<?php
class PacketReceiveNotification extends Notification
{
use Queueable;
protected $delivery_id;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct($delivery_id)
{
//
$this->delivery_id = $delivery_id;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment