如何显示存储在数组中的 Id 详细信息?

How can I show Id details which i stored in a array?

我使用 PHP implode 方法将一些 id 保存在数组中。我使用 explode 方法显示了该数组值。但我想显示该 Id 详细信息。例如:标题,图片。我怎样才能做到这一点?

这是来自控制器的商店代码:

public function store(Request $request)
{
    $request->validate([
        'title'=>'required',
        'image'=>'required',
        'description',
        'available'=>'required',
        'buy'=>'required',
        'account',
        'receive',
    ]);
    $image = $request->file('image');
    $new_name = rand() . '.' . $image->getClientOriginalExtension();
    $image->move(public_path('funds'), $new_name);
    $form_data = array(
        'title'=>$request->title,
        'image'=>$new_name,
        'description'=>$request->description,
        'available'=>$request->available,
        'buy'=>$request->buy,
        'buyrate'=>$request->buyrate,
        'sellrate'=>$request->sellrate,
        'account'=>$request->account,
        'receive'=>implode(',', (array)($request->receive)),
    );

    Fund::create($form_data);

    return redirect('/admin/fund');
}

这是我使用路由

发送到索引的内容
Route::get('/', function () {
$funds = DB::table('funds')->get();
$receive=[];
foreach($funds as $fund){
    $receive = explode(",",$fund->receive);
}
return view('frontend.exchangePage.exchange',['funds'=>$funds,'receive'=>$receive]);});

这是我从数组中显示的索引:

<div class="" style="{{--height: 200px; overflow: auto;--}}">
 @foreach($receive as $r)
   <a href="/multi" class="list-group-item">
      <p>
        <img src="" width="32px" height="32px"> {{  $r }}
          <span class="pull-right text text-muted hidden-xs hidden-sm" style="font-size:11px;">
             <small>Reserve: 1170580 BDT<br>Exchange rate: 1 BDT = 0.98 BDT</small>
          </span>
      </p>
   </a>
 @endforeach

刚刚在我的代码中写了这行简单的代码,它就可以工作了。

@php $receives = \App\Fund::whereIn('id', $receive)->get(); @endphp