How to update Laravel session Id in testing
How can I make the get request load with its session id as what is initially created with $sessionId = session()->getId(); public function test_chatbot_messages_page_has_non_empty_chat(): void { $sessionId = session()->getId(); ChatbotMessage::create([ 'session_id' => $sessionId, 'content' => 'Hello', 'role' => 'You', ]);…