Holen Sie sich Daten von Array (von einer API) in Laravel

return view('your_view', [
  'products' => $api_response['products']
]);
SAMER SAEID