我有一个在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);
}