public function kabupaten() { return response()->json(['error' => false, 'kabupaten' => Kabupaten::all()]); }
/** * Display a listing of the resource. * * @return Response */ public function index() { $lokasi = Kabupaten::all(); return view('admin.lokasi.index')->withLokasi($lokasi); }
/** * 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); }