PHP(Laravel)でDBからデータを取得し、それをJSONで返したいです。
現状
とあるテーブルのタイトル名で検索をかけるプログラムを作成しています。
$item=Item::where('title',$request->title)->get(); $content_array=array(); $content_num=array(); for($i=0;$i++;$i<3){ $content_array=( $content_num[$i]=>array( [ 'image' => $item[$i]->image], [ 'title' => $item[$i]->title], [ 'description' => $item[$i]->description], [ 'value' => $item[$i]->value] ) ); }
return response()->json([ [ 'image' => $item[0]->image], [ 'title' => $item[0]->title], [ 'description' => $item[0]->description], [ 'value' => $item[0]->value], ]);
$item=Item::where('title',$request->title)->get()
で取得できるデータを全てjsonで返したく,二次元配列を意識して作っているのですが,解法の手口がつかめません。
どうしたら良いでしょうか。
回答1件
あなたの回答
tips
プレビュー