//app/Exceptions/Handler.php
public function render($request, Throwable $exception)
{
if (!$request->ajax() && ($exception instanceof TokenMismatchException)) {
return redirect()
->back()
->withErrors('頁面已過期,請重新提交') // 可選
->withInput($request->input()); // 可選
}
return parent::render($request, $exception);
}
本作品採用《CC 協議》,轉載必須註明作者和本文連結