POST Request not delivering to the server

I used the HTTP in ionic 2 to send data to a laravel server with some form data, i already changed the Content-Type to application/x-www-form-urlencoded, i already set the request options and even have all my form values to querystring but when i called Input::all() from laravel, its a blank array with no form value.
When i checked the request being sent, the request body has those values but laravel keeps sending empty array.
I also tried the same route on postman and it works quiete fine. Please is there anything i can do??
Thanks.

have you enabled cors on your server?