I get the output of the values as following in the postman. [{"currentVersion":1.1}]
How can i get output in simple form as: 1.1
$currentVersion = DB::table('app_Version')
->select('currentVersion')
->get();
echo $currentVersion
How can i get output in simple form as: 1.1