Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

CompanyConfigured.php 477B

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