Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
解决此问题的所有示例似乎都来自旧版本的 laravel,是否有使用版本 8 的示例。这也是 Jetstream 应该涵盖的内容吗?
以下内容在版本 8 中不起作用
if ($exception instanceof \Illuminate\Session\TokenMismatchException) { return redirect()->route('login'); }
以下是如何在 Laravel 8 中的 register 方法中执行此操作:
public function register() { //... $this->renderable(function (Throwable $e) { if ($e->getPrevious() instanceof \Illuminate\Session\TokenMismatchException) { return redirect()->route('login'); } }); }