laravel-frontend-presets / tall

A TALL (Tailwind CSS, Alpine.js, Laravel and Livewire) Preset for Laravel
MIT License
2.42k stars 203 forks source link

Email Verified At? #101

Closed brandon-9 closed 2 years ago

brandon-9 commented 2 years ago

So the users table populates with the column email_vereified_at, but doesn't appear to be enabled within this by default? What's the best way to set that up? Does some of it already exist and is just not enabled? Thanks!

rydurham commented 2 years ago

To opt your user model into email verification you have to add implements Illuminate\Contracts\Auth\MustVerifyEmail to the model class.

See more here: https://laravel.com/docs/8.x/verification

brandon-9 commented 2 years ago

Thank you @rydurham !