Replies: 1 comment
-
@Twyar, Hello. Were you able to solve this problem? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am using Laravel 11 with the Laravel Breeze starter kit and Inertia/Vue3
What I usually like to do with my routes is to make them more clear and group invidual routes together.
So what I did for Laravel Breeze is
instead of the default
That way all my routes become
Now I would like to use the
MustVerifyEmail
interface on the model, so I did:However, this interface wants to redirect to the default Breeze routes, so I get:
What would be the best way to overwrite this behaviour and let it route to
auth.verification.notice
?Obviously I could just remove the
->as('auth.')
, but I think for personal uses it's a little bit more clear like that, so preferably I like to keep that.Beta Was this translation helpful? Give feedback.
All reactions