Assuming you already have the JSON in your controller, and that JSON is in a variable called $response, you should be able to do:
$data = json_decode($response, true);
$desc = $data['description']['desc'];
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community