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.

CompanyConfigured.php 377B

1234567891011121314151617181920
  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 function __construct(
  13. public Company $company
  14. ) {
  15. }
  16. }