Пример #1
0
 /**
  * Remove the specified loanaccount from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Loanaccount::destroy($id);
     return Redirect::route('loanaccounts.index');
 }