I am building an application using (laravel 8,Jetstream, Fortify), this how the users table looks like
id
name
email
tag
i need to check if the tag field is empty for a specific user when that user authenticate successfully, if it's empty i need to assign a variable to it from the link like
http://127.0.0.1:8000/login?tag=100
I need to know where exactly can I find the function so I can edit the code.
You can implement your custom logic for authentication with Jetstream by using
Jetstream::authenticateUsing()
method in theboot()
method of theapp/Providers/JetstreamServiceProvider.php
Jetstream docs: https://jetstream.laravel.com/1.x/features/authentication.html#customizing-the-authentication-process