/**
  * Remove the specified resource from storage.
  *
  * @param  Entry $entry
  * @return Response
  */
 public function destroy(Entry $entry)
 {
     $this->entry->destroy($entry);
     flash()->success(trans('core::core.messages.resource deleted', ['name' => trans('entry::entries.title.entries')]));
     return redirect()->route('admin.entry.entry.index');
 }