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()]); } }
public function carikabupaten($id) { $kabupaten = Kabupaten::where('provinsi_id', $id)->get(); $options = []; foreach ($kabupaten as $station) { $options += [$station->id => $station->nama]; } return response()->json($options); }
/** * Show the form for editing the specified resource. * * @param int $id * @return Response */ public function edit($slug) { $kategori = Kategori::all(); $kabupaten = Kabupaten::all(); $peta = Peta::with('kategori', 'kecamatan.kabupaten')->whereSlugNama($slug)->first(); return view('admin.peta.edit')->withKategori($kategori)->withKabupaten($kabupaten)->withPeta($peta); }