예제 #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($suspect_id)
 {
     $suspect = Suspect::findOrFail($suspect_id);
     $suspect->delete();
     return Redirect::to(route('settings.index'))->with('message', ['content' => 'Verdachte met succes verwijderd!', 'class' => 'success']);
 }