/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function getDelete($id)
 {
     //
     Author::destroy($id);
     return redirect()->back();
 }