当 laravel 中的第一个索引数据非常大时,如何使用解码后的 json 数据

How can i use the decoded json data when the first index data is very large in laravel

解码 json 数据后,我得到了这些值,我想单独使用它们在文本框中显示它以更新这些数据。 但我找不到任何办法。

我在控制器中编码如下

$data = json_encode(array(
                $request->question1 => $request->answer1,
                $request->question2 => $request->answer2,
                $request->question3 => $request->answer3,
                $request->question4 => $request->answer4
            ));

@php $data = json_decode($contact_us->key_value); @endphp 我想在视图中执行此操作以在文本框中显示它。

foreach(json_decode($data) as $x) {
    echo $x;
}

使用 foreach

访问各个属性

到键和值

foreach(json_decode($data) as $key => $value) {
    echo $key . ' ' . $value;
}