I'm using laravel with blade and vuejs. Using a controller for a list I am receving the correct response with all the users data to show.
Some of this fields are json data and I can't understand how to retrieve single value.
`@foreach ($lista as $freelance)
<md-table-row>
<md-table-cell>
{{ $freelance->regione }}
</md-table-cell>
</md-table-row>
@endforeach`
$freelance->regione is a JSON, correctly shown in the page as:
`{"text": "Veneto", "value": "Veneto"}`
My question is, how can I get the single value of the JSON response and not all the data? Preferably without loops...I know that I can use a new loop for it but possible no..