/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $villages = Village::all();
     return view('poi.village.index')->with('villages', $villages);
 }