Add the following code in the bootstrap/app.php file:
use Illuminate\Session\Middleware\StartSession; $middleware->append(StartSession::class);
This is because the way we register custom middleware has changed slightly compared to Laravel 10 and earlier versions.
Hope this helps, thank you!
Das obige ist der detaillierte Inhalt vonSo beheben Sie das Problem, dass der Sitzungsspeicher nicht auf Anfrage von Laravel festgelegt wurde. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!