| 1234567891011121314151617181920212223 | <?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
    ) {
    }
}
 |