/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $je = WingmanJournal::find($id);
     $wingman_id = $je->wingman_id;
     $je->delete();
     return Redirect::to(URL::to('/') . "/wingman-journal/" . $wingman_id);
 }