This is a simple guide to verify user email address in Lumen 6 with the Laravel style ;) This tutorial assumes that you already created a new project, with JSON Web Token Authentication, Notification enabeled and your Email credentials set up. Find more about jwt-auth in the official repo or here http://jwt-auth.com. 1. Add email_verified_at field to your users table. Inside your users table migration you should add the following line $table->timestamp('email_verified_at'); when you’re done, your…