You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
448 B

  1. <?php
  2. namespace App\Events;
  3. use Illuminate\Broadcasting\InteractsWithSockets;
  4. use Illuminate\Foundation\Events\Dispatchable;
  5. use Illuminate\Queue\SerializesModels;
  6. class ProjectUserCreate
  7. {
  8. use Dispatchable, InteractsWithSockets, SerializesModels;
  9. public $message;
  10. /**
  11. * Create a new event instance.
  12. *
  13. * @return void
  14. */
  15. public function __construct($message)
  16. {
  17. $this->message = $message;
  18. }
  19. }