DestoryOrder.php 367 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace App\Events;
  3. class DestoryOrder
  4. {
  5. /**
  6. * Create a new event instance.
  7. *
  8. * @return void
  9. */
  10. public $data;
  11. public function __construct($data)
  12. {
  13. $this->data=$data;
  14. }
  15. /**
  16. * Get the channels the event should broadcast on.
  17. *
  18. * @return \Illuminate\Broadcasting\Channel|array
  19. */
  20. }