From 39122f1562120cd04382ff39e3553b6b4d66df7c Mon Sep 17 00:00:00 2001 From: Austin Kregel <5355937+austinkregel@users.noreply.github.com> Date: Sun, 9 Jun 2024 00:42:14 -0400 Subject: [PATCH] Add stateful api support --- bootstrap/app.php | 1 + 1 file changed, 1 insertion(+) diff --git a/bootstrap/app.php b/bootstrap/app.php index cdc44592..7b82e6ff 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -28,6 +28,7 @@ ]); $middleware->throttleApi(); + $middleware->statefulApi(); $middleware->replace(\Illuminate\Http\Middleware\TrustProxies::class, \App\Http\Middleware\TrustProxies::class); })