You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
661 B
25 lines
661 B
<?php |
|
|
|
namespace App\Http\Controllers\Auth; |
|
|
|
use App\Http\Controllers\Controller; |
|
use App\Providers\RouteServiceProvider; |
|
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(RouteServiceProvider::HOME); |
|
} |
|
|
|
$request->user()->sendEmailVerificationNotification(); |
|
|
|
return back()->with('status', 'verification-link-sent'); |
|
} |
|
}
|
|
|