12345678910111213141516171819 |
- <?php
-
- namespace App\Events;
-
- use App\Models\Company;
- use Illuminate\Broadcasting\InteractsWithSockets;
- use Illuminate\Foundation\Events\Dispatchable;
- use Illuminate\Queue\SerializesModels;
-
- class CompanyConfigured
- {
- use Dispatchable;
- use InteractsWithSockets;
- use SerializesModels;
-
- public function __construct(
- public Company $company
- ) {}
- }
|