Laravel 5.5在Exceptions / Handler中返回视图并清空csrf标记

时间:2017-10-14 15:16:46

标签: php laravel routes laravel-5.5

我有一个在Exceptions\Handler.php中呈现视图的自定义网址,但因为没有通过网络中间件传递,所以它不会创建我的csrf令牌(我认为)

代码:

/**
 * Render an exception into an HTTP response.
 *
 * @param  \Illuminate\Http\Request  $request
 * @param  \Exception  $exception
 * @return \Illuminate\Http\Response
 */
public function render($request, Exception $exception)
{
    if($exception instanceof NotFoundHttpException)
    {
        if(customURL()) {
        {
            $controller = new CustomURLController();
            return $controller->home();
        }

        return response()->view('errors.missing',array(), 404);
    }

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

0 个答案:

没有答案