📜  laravel 重新路由 419 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:49.055000             🧑  作者: Mango

代码示例1
$this->renderable(function (\Exception $e) {
    if ($e->getPrevious() instanceof \Illuminate\Session\TokenMismatchException) {
        return redirect()->route('login');
    };
});