How can I get value of two request header parameters with same name in laravel
?
in Postman I called a specific route of application and set header parameter named msg
two times with two different values. but in laravel controller, when I use $request->header("msg")
it gives me just first msg
header!
how is it possible two access to both headers named msg
?
picture: