示例#1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($society, $series, $id)
 {
     $sermon = Sermon::find($id);
     $sermon->delete();
     return redirect(url('/') . '/' . $society . '/series')->with('okmessage', 'Sermon has been deleted');
 }