12345678910111213141516171819202122 |
- <?php
-
- namespace App\Events;
-
- use App\Models\Company;
- use Illuminate\Foundation\Events\Dispatchable;
- use Illuminate\Queue\SerializesModels;
-
- class PlaidSuccess
- {
- use Dispatchable;
- use SerializesModels;
-
- /**
- * Create a new event instance.
- */
- public function __construct(
- public string $publicToken,
- public string $accessToken,
- public Company $company
- ) {}
- }
|