Test email verification functionality in development environment.
@if(session('success'))Status: Active
Configuration: MAIL_MAILER=log
Email Location: storage/logs/laravel.log
Steps to test:
Status: Available
Setup Required: Mailtrap account
Setup steps:
# Test with existing user
php artisan test:email-verification user@example.com --send --url
# Create test user and send verification
php artisan test:email-verification newuser@test.com --create --send
The custom command provides interactive testing with options to create users, send emails, and generate verification URLs.
| Role | Verified | Actions | |
|---|---|---|---|
| {{ $user->email }} | {{ ucfirst(str_replace('_', ' ', $user->role)) }} | @if($user->hasVerifiedEmail()) Yes @else No @endif |