/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $entries = $this->entry->all();
     return view('entry::admin.entries.index', compact('entries'));
 }