Example #1
0
 public function carikecamatan($id)
 {
     $kecamatan = Kecamatan::where('kabupaten_id', $id)->get();
     $options = [];
     foreach ($kecamatan as $station) {
         $options += [$station->id => $station->nama];
     }
     return response()->json($options);
 }