You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
		
		
		
		
		
			
		
			
				
					
					
						
							24 lines
						
					
					
						
							625 B
						
					
					
				
			
		
		
	
	
							24 lines
						
					
					
						
							625 B
						
					
					
				<?php | 
						|
 | 
						|
namespace App\Http\Controllers\Auth; | 
						|
 | 
						|
use App\Http\Controllers\Controller; | 
						|
use Illuminate\Http\RedirectResponse; | 
						|
use Illuminate\Http\Request; | 
						|
 | 
						|
class EmailVerificationNotificationController extends Controller | 
						|
{ | 
						|
    /** | 
						|
     * Send a new email verification notification. | 
						|
     */ | 
						|
    public function store(Request $request): RedirectResponse | 
						|
    { | 
						|
        if ($request->user()->hasVerifiedEmail()) { | 
						|
            return redirect()->intended(route('home', absolute: false)); | 
						|
        } | 
						|
 | 
						|
        $request->user()->sendEmailVerificationNotification(); | 
						|
 | 
						|
        return back()->with('status', 'verification-link-sent'); | 
						|
    } | 
						|
}
 | 
						|
 |