/**
  * Display a listing of the Element.
  *
  * @return Response
  */
 public function index()
 {
     $elements = $this->elementRepository->paginate(10);
     return view('elements.index')->with('elements', $elements);
 }