mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-11-30 22:20:45 +00:00
43 lines
997 B
PHP
43 lines
997 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Events;
|
||
|
|
|
||
|
|
use Illuminate\Broadcasting\Channel;
|
||
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
||
|
|
use Illuminate\Broadcasting\PresenceChannel;
|
||
|
|
use Illuminate\Broadcasting\PrivateChannel;
|
||
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
||
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
||
|
|
use Illuminate\Queue\SerializesModels;
|
||
|
|
|
||
|
|
class CreateLogisticEvent
|
||
|
|
{
|
||
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
||
|
|
|
||
|
|
public $shopId;
|
||
|
|
public $orderSn;
|
||
|
|
public $waybillNo;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Create a new event instance.
|
||
|
|
*
|
||
|
|
* @return void
|
||
|
|
*/
|
||
|
|
public function __construct($shopId, $orderSn, $waybillNo)
|
||
|
|
{
|
||
|
|
$this->shopId = $shopId;
|
||
|
|
$this->orderSn = $orderSn;
|
||
|
|
$this->waybillNo = $waybillNo;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Get the channels the event should broadcast on.
|
||
|
|
*
|
||
|
|
* @return \Illuminate\Broadcasting\Channel|array
|
||
|
|
*/
|
||
|
|
public function broadcastOn()
|
||
|
|
{
|
||
|
|
return new PrivateChannel('channel-name');
|
||
|
|
}
|
||
|
|
}
|