예제 #1
0
 /**
  * Remove the specified loanposting from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Loanposting::destroy($id);
     return Redirect::route('loanpostings.index');
 }