I'm trying to send a cookie whose name contains two dots. this is my code
$response = Http::withHeaders([
'Cookie' => '.cookie.withdots=test-value'
])->get('http://example.com');
now when I send this request to my system on another route and print the cookies dots(.) has transformed to underscores(_)
array:1 [
"_cookie_withdots" => "test-value"
]
I need them to stay as dots(.) what can i do guys?