コード例 #1
0
 /**
  * Remove the specified resource from storage.
  * DELETE /estadocivils/{id}
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $estado = EstadoCivil::findOrFail($id);
     $estado->delete();
     return $estado;
 }