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.

CompanyGenerated.php 509B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Events;
  3. use App\Models\Company;
  4. use App\Models\User;
  5. use Illuminate\Foundation\Events\Dispatchable;
  6. use Illuminate\Queue\SerializesModels;
  7. class CompanyGenerated
  8. {
  9. use Dispatchable;
  10. use SerializesModels;
  11. /**
  12. * Create a new event instance.
  13. */
  14. public function __construct(
  15. public User $user,
  16. public Company $company,
  17. public string $country,
  18. public string $language = 'en',
  19. public string $currency = 'USD'
  20. ) {
  21. }
  22. }