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