mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-10-31 22:39:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			711 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			711 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers\Auth;
 | |
| 
 | |
| use App\Http\Controllers\Controller;
 | |
| use App\Providers\RouteServiceProvider;
 | |
| use Illuminate\Http\Request;
 | |
| 
 | |
| class EmailVerificationNotificationController extends Controller
 | |
| {
 | |
|     /**
 | |
|      * Send a new email verification notification.
 | |
|      *
 | |
|      * @param  \Illuminate\Http\Request  $request
 | |
|      * @return \Illuminate\Http\RedirectResponse
 | |
|      */
 | |
|     public function store(Request $request)
 | |
|     {
 | |
|         if ($request->user()->hasVerifiedEmail()) {
 | |
|             return redirect()->intended(RouteServiceProvider::HOME);
 | |
|         }
 | |
| 
 | |
|         $request->user()->sendEmailVerificationNotification();
 | |
| 
 | |
|         return back()->with('status', 'verification-link-sent');
 | |
|     }
 | |
| }
 |