Changes for frontend

This commit is contained in:
2017-07-26 00:07:52 +02:00
parent af370846e6
commit 8b30298ca6
3 changed files with 14 additions and 7 deletions

View File

@@ -63,16 +63,16 @@ QUERY;
/**
* Specifiek bericht ophalen
*/
public function item(int $id) {
public function item($id) {
$newsItem = app('db')->select(self::$BASE_SQL
. ' AND `news`.`id` = :id LIMIT 0, 1',
['id' => $id]);
['id' => (int)$id]);
if(count($newsItem) != 1) {
return abort(404);
} else {
$pictures = app('db')->select(self::$LOAD_IMAGES, ['newsId' => $id]);
return response()->json(new \Model\NewsItem($newsItem[0]));
$images = app('db')->select(self::$LOAD_IMAGES, ['newsId' => $id]);
return response()->json(new \Model\NewsItem($newsItem[0], $images));
}
}
}