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.

CompanyDefaultEvent.php 483B

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