コード例 #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     // delete
     Owner::destroy($id);
     // redirect
     Session::flash('message', 'Successfully deleted the team owner!');
     return Redirect::to('all');
 }