so im having this problem with laravel 5.7 im trying to build a verification email script when a new test jobseeker singup the verification email get sent to mailtrap. normaly the verification script should pick the test jobseeker ID from database but the problem is inmail trap the link it doesnt show up correctly (wrong ID)
http://127.0.0.1:8000/job_seeker.verification/1566934249?signature=a70c7846941347109945c2e9d07ccbcd285082e3b1f561d15e4b86d3afceb467
the area with bold text is where the correct id is supposed to be
https://github.com/moussa03/job_board
this is the link of the whole project in case anyone wanted to have a look at it any help would be much appreciated
i have tried this solution linked bellow Apply Laravel 5.7 MustVerifyEmail on Multiple Authentication System
the whole project exists in github
no error message pop up just havin issu with picking the new user id withing the verification link
Auth::routes(['verify' => true]);
because otherwise I think your verification route gets overrided - mdexp