/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     //
     $notaris = ListNotaris::all();
     return Response::json($notaris, 200);
 }