我有此表包含列(与会者),该列包含用户ID
我该如何foreach(与会者)列,并说出此id =用户的任何id显示用户的名称,我将尝试使用此代码,但不起作用
@foreach ($view->attendees as $test)
<p>{{ $test }}</p>
@endforeach
有什么帮助吗?
答案 0 :(得分:1)
您可以尝试使用json_decode()
函数,即:
@foreach (\User::find(json_decode($view->attendees)) as $test)
<p>{{ $test->name }}</p>
@endforeach