You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The TeamInvitationController.php uses Laravel\Jetstream\TeamInvitation as injection in accept(...,TeamInvitation $invitation) and destroy(...,TeamInvitation $invitation)instead ofApp\Models\TeamInvitation` created by stubs.
This makes the custom Model classes useless.
Steps To Reproduce:
Example:
Change the DB connection for the model App\Models\TeamInvitation
When adding invitations & removing invitations, it ignores the custom DB connection, because the DI uses the Laravel\Jetstream\TeamInvitation instead.
The text was updated successfully, but these errors were encountered:
Description:
The
TeamInvitationController.php
usesLaravel\Jetstream\TeamInvitation
as injection inaccept(...,TeamInvitation $invitation) and
destroy(...,TeamInvitation $invitation)instead of
App\Models\TeamInvitation` created by stubs.This makes the custom Model classes useless.
Steps To Reproduce:
Example:
Laravel\Jetstream\TeamInvitation
instead.The text was updated successfully, but these errors were encountered: