“Laravel E -mail weryfikacja Laravel 8 Tutorial” Kod odpowiedzi

Weryfikacja e -maila Laravel

Route::name('auth.resend_confirmation')->get('/register/confirm/resend', 'Auth\RegisterController@resendConfirmation');

Route::name('auth.confirm')->get('/register/confirm/{confirmation_code}', 'Auth\RegisterController@confirm');
Amused Ape

Laravel E -mail weryfikacja Laravel 8 Tutorial

<?php
  
namespace App\Http\Middleware;
  
use Closure;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
  
class IsVerifyEmail
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     */
    public function handle(Request $request, Closure $next)
    {
        if (!Auth::user()->is_email_verified) {
            auth()->logout();
            return redirect()->route('login')
                    ->with('message', 'You need to confirm your account. We have sent you an activation code, please check your email.');
          }
   
        return $next($request);
    }
}
Muhammad Haseeb

Odpowiedzi podobne do “Laravel E -mail weryfikacja Laravel 8 Tutorial”

Pytania podobne do “Laravel E -mail weryfikacja Laravel 8 Tutorial”

Więcej pokrewnych odpowiedzi na “Laravel E -mail weryfikacja Laravel 8 Tutorial” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu