orderByDesc("order")->get(); $result = []; foreach($data as $item){ $result["list"][] = [ "title" => $item->getTranslation("title", $locale), "content" => $item->getTranslation("content", $locale), "imgUrl" => $item->img_url_link, "alt" => $item->getTranslation("img_alt", $locale) ]; } return Response::ok($result); } }