コード例 #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param int $id Resource ID
  *
  * @return Response
  */
 public function destroy($id)
 {
     Stage::findOrFail($id)->delete();
     return redirect()->route('admin.stage.index')->withMessage('The requested stage has been deleted.');
 }