Laravel Version: 5.6.12
PHP Version: 7.1
Vuejs Version: 2.5
Database Driver & Version: MySQL 5.7 (Using mysqlnd driver)
Description: API response returning double quoted numeric value therefore producing undesired output. The response recieved from the server is attached in this image:
$data = ['message' => 'Hello'];
return response()->json($data, 200);
Why numeric values in response is double quoted?
Resolved: