How to access value in Json Object Laravel Blade

Solution:

You have to use following code

@php $jsonDecodeValue = json_decode($your_variable,true); @endphp
{{ $jsonDecodeValue['Elevator']}}