0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ログアウトすると419セッションエラー画面が出る(Laravel)

Posted at

プログラミング初心者です。

問題

LaravelのAuthを使ってログイン、ログアウト機能を実装しました。
しかし、「ログアウト→戻る→ログアウト」をすると419画面が出てきてしまいます。

解決方法

app/Exceptions/Handler.phpに追加実装します。

Handler.php
<?php

namespace App\Exceptions;

//追加1
use Illuminate\Session\TokenMismatchException;

class Handler extends ExceptionHandler
{
    public function render($request, Exception $exception)
    {
        // 追加2
        //エラー画面をユーザーに見せる必要はないので、ログイン画面にリダイレクトさせる
        if ($exception instanceof TokenMismatchException) {
            return redirect('/login');
        }

        return parent::render($request, $exception);
    }

}
  • namespaceの下に追加1を記載します。
  • class Handlerの中に元から色々なメソッドがありますがその中のrenderメソッドの中に、追加2を記載します。

自分はこれで解決できました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?