input('kategori'); $artikel = DB::table('data_artikel') ->select('data_artikel.*') ->where('kategori', $kategori) ->orderBy('id', 'desc') ->get(); return response()->json($artikel); } }