如何为列中包含ID用户的数组中的每个数据?

时间:2019-07-26 21:32:11

标签: json laravel

我有此表包含列(与会者),该列包含用户ID

enter image description here

我该如何foreach(与会者)列,并说出此id =用户的任何id显示用户的名称,我将尝试使用此代码,但不起作用

@foreach ($view->attendees as $test)
   <p>{{ $test }}</p>
@endforeach

有什么帮助吗?

1 个答案:

答案 0 :(得分:1)

您可以尝试使用json_decode()函数,即:

@foreach (\User::find(json_decode($view->attendees)) as $test)
   <p>{{ $test->name }}</p>
@endforeach