/**
  * Remove the specified loantransaction from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Loantransaction::destroy($id);
     return Redirect::route('loantransactions.index');
 }