Beispiel #1
0
 /**
  * Remove the specified agenda item from storage.
  *
  * @Delete("/{id}")
  * @Response(204)
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     AgendaItem::destroy($id);
     return response('', Response::HTTP_NO_CONTENT);
 }