コード例 #1
0
ファイル: BanksController.php プロジェクト: kenkode/xaraerp
 /**
  * Remove the specified branch from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Bank::destroy($id);
     return Redirect::route('banks.index');
 }
コード例 #2
0
ファイル: BanksController.php プロジェクト: syafdia/PAS
 /**
  * Remove the specified resource from storage.
  * DELETE /banks/{id}
  *
  * @param  int  $id
  * @return Response
  */
 public function delete($id)
 {
     Bank::destroy($id);
     return Redirect::back();
 }