1234567891011121314151617181920212223242526272829 |
- <?php
- namespace App\Events;
- class DestoryOrder
- {
- /**
- * Create a new event instance.
- *
- * @return void
- */
- public $data;
- public function __construct($data)
- {
- $this->data=$data;
- }
- /**
- * Get the channels the event should broadcast on.
- *
- * @return \Illuminate\Broadcasting\Channel|array
- */
- }
|