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