So I have customized the users table on the default installation of Laravel Breeze, I want specific updates to the table rows when the email is successfully verified. How to do it? I don't really understand which files to change. I want the changes to trigger along with changes to the email_verified_at row.
I want the changes to trigger along with changes to the email_verified_at row
You can listen for the Verified event.
Illuminate\Auth\Events\Verified
Check the docs for more info.