I have an application in Laravel5. What I need is to be able to call an external api and then process the response from the api accordingly.
The response I will get in return is in the form as an xml tag as follows with either True or False
<statusCheck success="true"/>
Can someone point me to the right direction that how can I call to external api?
Note
Please note that I want to make this request within a controller or model.