public function kabupatencagarbudaya($slug) { $lokasi = Kabupaten::with('kecamatan')->whereSlugNama($slug)->first(); $kec = []; foreach ($lokasi->kecamatan as $q) { array_push($kec, $q->id); } $peta = Peta::with('kecamatan', 'kategori', 'foto')->whereIn('kecamatan_id', $kec)->orderBy('nama_lokasi', 'ASC')->get(); return view('admin.lokasi.cagarbudaya')->withLokasi($lokasi)->withPeta($peta); }
public function petakabupaten(Request $request, $id) { $data = Kabupaten::with('kecamatan')->find($id); $ids = []; foreach ($data->kecamatan as $q) { array_push($ids, $q->id); } if ($request->input('limit') == '') { return response()->json(['error' => false, 'kabupaten' => Kabupaten::whereId($id)->pluck('nama_kabupaten'), 'peta' => Peta::with('kategori', 'kecamatan.kabupaten', 'foto')->whereIn('kecamatan_id', $ids)->orderBy('id', 'DESC')->get()]); } else { return response()->json(['error' => false, 'kabupaten' => Kabupaten::whereId($id)->pluck('nama_kabupaten'), 'peta' => Peta::with('kategori', 'kecamatan.kabupaten', 'foto')->whereIn('kecamatan_id', $ids)->orderBy('id', 'DESC')->take($request->input('limit'))->get()]); } }